From 3739c91aa1fbc54ce4f38b07f172a5d8e5a8f4f6 Mon Sep 17 00:00:00 2001 From: halidickson <63528283+halidickson@users.noreply.github.com> Date: Sun, 12 Apr 2020 01:14:04 -0700 Subject: [PATCH] lesson two --- lessonTwo.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lessonTwo.py b/lessonTwo.py index 7a893c3..dd71c8d 100644 --- a/lessonTwo.py +++ b/lessonTwo.py @@ -19,5 +19,7 @@ i = 0 while i <= 10 : # your code here - + if i % 2 == 0: + # i is even + print (i) i += 1 \ No newline at end of file