Skip to content

Commit 38f05bd

Browse files
authored
Update Primes.py
1 parent 85cc70e commit 38f05bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Primes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
max = int(input("Find primes up to what number? : "))
44
primeList = []
5-
5+
#for loop for checking each number
66
for x in range(2, max + 1):
77
isPrime = True
88
index = 0
@@ -43,4 +43,4 @@
4343

4444
x += 1
4545

46-
print(primeList)
46+
print(primeList)

0 commit comments

Comments
 (0)