2020-07-14 00:13:17 +01:00

5 lines
157 B
Python

x = input("Your options are: add / subtract")
while not x in ["add", "subtract"]:
x = input("Your options are: add / subtract")
print("You chose: " + x[0])