From 9e95bf1f60d5a824f1092de94770368bc4c31915 Mon Sep 17 00:00:00 2001 From: Daniel Moix <dwm69@drexel.edu> Date: Tue, 24 Sep 2024 10:54:20 -0400 Subject: [PATCH] CS 171 Lecture 01 --- cs171/lect01/hello.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/cs171/lect01/hello.py b/cs171/lect01/hello.py index 061448a..46088e3 100644 --- a/cs171/lect01/hello.py +++ b/cs171/lect01/hello.py @@ -1 +1,16 @@ -print("Hello CS 171") +# print("Hello CS 171") +# name = input("What is your name? " ) +# print('Hello', name) +# +# home_address = "123 Banana Street" # I don't really live here +# homeAddress = "123 Banana Street" +# # Below is some experimentation: +# print(home_address) +# +# print("Line Ten", end='') +# print("Line Eleven") +# print("The beat goes on") + +age = int(input("Enter your age: ")) +print("Next year you will be " + age + 1) +print("The value of age is ", age) \ No newline at end of file -- GitLab