variable = input("text before input") # saves user input to "variable"
print ('Hello, what is your name?') name = input() print ('Hello', name) # Asks user for their name. User inputs their name. Hello <name> is printed to the screen.