I am trying to get a user to input a number into a calculator program. The goal right now is to keep giving the user an error message and asking to reenter a number until they enter a real number.
here is some code that I've done:
number_1 = input("Enter your first number here! ")
while number_1 == int():
print("Well done for entering a number!")