diff --git a/cs171/lect01/hello.py b/cs171/lect01/hello.py index 061448a8d1383c3b10b99d3b4667be38bd953c3a..46088e39d6af5a005692b0bce44c013ef1966218 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