Learn1 of 3
The input() Function
The input() function lets your program ASK the user a question and wait for their answer. Try: name = input('What is your name? '). Python displays the question, waits for the user to type something, and stores their answer in the variable name. Now print('Nice to meet you, ' + name) uses whatever they typed!