Skip to content

Commit 53a24c5

Browse files
authored
Added in to the file to fix error
Fixed the error in line 6, by adding 'in' in between 'i' and 'range'
1 parent 059aa7a commit 53a24c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Print_List_of_Even_Numbers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# INPUT NUMBER OF EVEN NUMBERS
22

3-
n=int(input())
3+
n=int(input('Amount: '))
44
start=0
55

6-
for i range(n):
6+
for i in range(n):
77
print(start)
88
start+=2

0 commit comments

Comments
 (0)