You entered the following line of code in IDLE.

>>> guess = input("Enter a guess: ")

This is the result.
Enter a guess: 2

What data type is the variable guess?

int

float

string


Answer :

Guess is a string. By default the input function returns string types.

Answer:

guess is a string

Explanation:

Go Question: Other Questions