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 54eed14 commit 404d43eCopy full SHA for 404d43e
find_number.py
@@ -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