We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916e5ff commit 6569e11Copy full SHA for 6569e11
Print_List_of_Even_Numbers.py
@@ -1 +1,2 @@
1
-print list(x for x in range(2,100,2))
+print [x for x in range(2, 100) if not x % 2]
2
+print range(2, 100, 2)
0 commit comments