You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
def get_user_input():
a = input("Enter first number: ")
print(a)
if(a=='#'):
return -1
try:
fa=float(a)
except ValueError:
return None
b = input("Enter second number: ")
print(b)
if(b=='#'):
return -1
try:
fb=float(b)...