Tento jednoduchý Python program žádá uživatele, aby vybral požadovanou operaci. Možnosti výběru 1, 2, 3 a 4 jsou platné. Jsou vybrána dvě čísla if...elif...else a větvení se používá k provedení určité sekce programu. Uživatelem definované funkce add(), subtract(), multiply() a divide() provedou příslušné operace. # Program make a simple calculator # This function adds two numbers def add ( x , y ): return x + y # This function subtracts two numbers def subtract ( x , y ): return x - y # This function multiplies two numbers def multiply ( x , y ): return x * y # This function divides two numbers def divide ( x , y ): return x / y print ( "Select operation." ) print ( "1.Add" ) print ( "2.Subtract" ) print ( "3.Multiply" ) print ( "4.Divide" ) # Take input from the user choice = input ( "Enter choice(1/2/3/4): " ) num1 = float ( input ( "Enter first number: ...