0
question for 'input()'
* (This is in Module 1 quiz) word = input(enter the words : ) enter the words : cheese * does cheese saved as string? * but there is no no quotes
2 Answers
+ 7
Everything (even numbers) entered using input() is saved as a string. No quotes required.
+ 1
If cheese were typed, word would have the value: âcheeseâ. The user canât interact with variables directly, so no quotes needed.