Study Notes:
- input is the user input command, such as input("what is your name:")
- Variables cannot have spaces, camel case looks better. When using variable names, they must be completely consistent, and case-sensitive.
- print prints variables, no need for quotes, for example
myName=input("what is your name:")
print("nice to meet you!")
print(myName)
CODE
myName=input("What's your name?:")
myFood=input("What's your favourite food:")
myMusic=input("What's your favourite music:")
myLive=input("Where do you live:")
print("You are")
print(myName)
print("You're probably hungry for")
print(myFood)
print("and you' re definitely getting your groove on to")
print(myMusic)
print("living in the amazing")
print(myLive)