diff --git a/lessonTwo.py b/lessonTwo.py index 7a893c3..ead9966 100644 --- a/lessonTwo.py +++ b/lessonTwo.py @@ -20,4 +20,10 @@ while i <= 10 : # your code here - i += 1 \ No newline at end of file + i += 1 + +for i in range(11): + #print(i) + even = i % 2 + if even == 0: + print(i) \ No newline at end of file