Guest User

Untitled

a guest
Jul 11th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. numBy7NotBy5 = []
  2. for i in range(2000, 3201):
  3. if (i%7 == 0) and (i%5 != 0):
  4. numBy7NotBy5.append(str(i))
  5. print(",".join(numBy7NotBy5))
Add Comment
Please, Sign In to add comment