Skip to content

Commit 4b83b8b

Browse files
author
SlithyMatt
committed
first draft of Lesson 2 slides
1 parent 49e5483 commit 4b83b8b

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

lesson2/input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
print("Your name is " + name)
44
print("What is your age?")
55
age = input()
6-
if (age.isdigit()):
6+
if age.isdigit():
77
nextage = int(age) + 1
88
print("You will be " + str(nextage) + " on your next birthday")
99
else:

lesson2/python101_lesson2_Script.odt

372 Bytes
Binary file not shown.

lesson2/python101_lesson2_slides.odp

13.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)