Get your own Python server Result Size: 625 x 565
x
 
y = True
while y == True:
  x = input("Enter a number:")
  try:
    x = float(x);
    y = False
  except:
    print("Wrong input, please try again.")
print("Thank you!")
Enter a number: