From ecc4c11999ba7d1672a26d8e36c3fa2cd5bd79a2 Mon Sep 17 00:00:00 2001 From: Brian MacLean Date: Sun, 12 Apr 2020 00:38:01 -0700 Subject: [PATCH] lesson 2 --- lessonTwo.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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