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.
2 parents 916e5ff + a27ab49 commit bf78ecdCopy full SHA for bf78ecd
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