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