From 63a9c21dcea548a7dab2b25f6d814c92dae33e72 Mon Sep 17 00:00:00 2001 From: Maya Goody Date: Sat, 11 Apr 2020 14:55:52 -0700 Subject: [PATCH] lesson 2 --- lessonTwo.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lessonTwo.py b/lessonTwo.py index 7a893c3..404b3d1 100644 --- a/lessonTwo.py +++ b/lessonTwo.py @@ -19,5 +19,8 @@ i = 0 while i <= 10 : # your code here + if i % 2 == 0 : + print i - i += 1 \ No newline at end of file + i += 1 +