Given the code:
print("Please enter your name.")
name = input()
Assuming the user entered something, what would be the result of
》» type(name)
?
Given the code:
print("Please enter your name." name=input
Assuming the user entered something,what would be the result of
>> type(name)
?
O<class 'str'>
O Depends on whether they enter a word or a number
O<class 'int'>
O<class'NoneType'>