Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Please note : The assignments are unmarked.

Your solution might look like this:

xh = input("Enter Days:")

xr = input("Enter Rate:")

try:

fh = float(xh)

fr = float(xr)

except:

print("Error, please enter numeric input")

You might also like