7 lines
196 B
Python
7 lines
196 B
Python
# this is my first Python program
|
|
first_name = "bread"
|
|
last_name = "milc"
|
|
favorite_food = "67 shaped pizza"
|
|
print(f"hello {first_name}")
|
|
print(f"I like {favorite_food}")
|
|
print("It's really good!") |