Knowledge organisersInput
Read text input from user.
The input() function pauses the program and waits for the user to type something. It always returns a string, even if the user types a number.
input() returns a string, alwaysinput("Enter name: ")name = input("Name: ")name = input("What is your name? ")
print("Hello,", name)