while True:
sales = input("Enter how much money the business made from sales: ")
if input == int():
break
else:
print("Sorry please enter a number")
When I run the code and I put an intger it says that it is not and tells me to retry. It should only happen if the input is a string not an intger.