Learning Notes:
- When using print, separate variables and text with a comma, do not use quotes for variables.
myName=input("What is your name:")
print("Nice to meet you!", myName)
CODE
varName=input("Name a food:")
varPlant=input("Name a type of plant:")
varCooking=input("Name a cooking method:")
varFood=input("What word describes burned food:")
varItem=input("Name a DIY item:")
print("MENU")
print(varCooking, varName, "with", varFood, varPlant, "on a bed of", varItem )