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 +