Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 236 Bytes

File metadata and controls

10 lines (9 loc) · 236 Bytes

assignment1.py

name = "Noel" age = 18 favorite_things = ["Pizza", "Chocolate", "Ice cream"] print("My name is", name) print("I am", age, "years old") print("My favorite things are:") for item in favorite_things: print("-", item)