Today's lesson has very few knowledge points, but the sense of achievement needs to be stronger. Finally, there is an interaction that can be considered interactive.
Learning Record:
- When using print, variables and text only need to be separated by commas, and variables should not be enclosed in quotation marks.
myName=input("waht is your name:")
print("nice to meet you!", myName)
CODE
varName=input("Name a food:")
varPlant=input("Name a type plant:")
varCooking=input("Name a method of cooking:")
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 )