Posts by gui_1765 • 1 point
1 post
-
-2
votes1
answer28
viewsQ: I’m making a calculator, but I want the program to ask the user if he wants to use it again,
Here is my code: def add(x, y): return x + y def subtract (x, y): return x - y def multiply (x, y): return x * y def divide (x, y): return x / y print('Select operator.') print('1.add')…
python-3.xasked gui_1765 1