Sometimes we need information from a user
input → program → output
print("What is your name?") # Question on terminal
name = input() # Defines the input
print("Good Morning",name,"What is your PPS number?")"Good Morning",name,"What is your PPS number?"
Orange = Print
Green = Called variable made from input
name = input("What is your name?") # Defines the input
print("Good Morning",name,"What is your PPS number?")Python always assumes strings, when it comes to input()
age = int(input("What is your age?"))
print("I am",age,"years old")