Skip to content

Commit 404d43e

Browse files
committed
find_number
1 parent 54eed14 commit 404d43e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

find_number.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
l=[]
2+
for i in range(2000, 3201):
3+
if (i%7==0) and (i%5!=0):
4+
l.append(str(i))
5+
6+
print(','.join(l))

0 commit comments

Comments
 (0)