From 97f7fafcf2ef439b6810f3110b96bea8ce1b487f Mon Sep 17 00:00:00 2001 From: breadmilc Date: Thu, 23 Oct 2025 09:38:58 -0500 Subject: [PATCH] added comment variables and print statements --- main.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/main.py b/main.py index e69de29..3025793 100644 --- a/main.py +++ b/main.py @@ -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!") \ No newline at end of file