Which entry by the user will cause the program to halt with an error statement?
# Get a guess from the user and update the number of guesses.
guess = input("Guess an integer from 1 to 10.)
guess = int(guess)
seven
3
65
-25

Respuesta :

Answer:

seven

Explanation:

Look at python data types

  • float=decimal
  • int=integer
  • str=string

seven is a string not integer

So it will raise error