From my understanding, NoneType means the returns object will be nothing. However, why is the code
print ("Hello")
be a NoneType? It prints the str 'Hello'.
Say it is a NoneType type because the word ("Hello") is not saved in the memory. Then why is the code
input("What is your name?")
be a str ?