added comment variables and print statements

This commit is contained in:
2025-10-23 09:38:58 -05:00
parent 0253446e17
commit 97f7fafcf2

View File

@@ -0,0 +1,7 @@
# 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!")