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 059aa7a commit 53a24c5Copy full SHA for 53a24c5
Print_List_of_Even_Numbers.py
@@ -1,8 +1,8 @@
1
# INPUT NUMBER OF EVEN NUMBERS
2
3
-n=int(input())
+n=int(input('Amount: '))
4
start=0
5
6
-for i range(n):
+for i in range(n):
7
print(start)
8
start+=2
0 commit comments