Guest User

Untitled

a guest
Dec 10th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def cracklepop():
  2. for count in range(1, 101):
  3. if count % 3 == 0 and count % 5 == 0:
  4. print 'CRACKLEPOP'
  5. elif count % 3 == 0:
  6. print 'CRACKLE'
  7. elif count % 5 == 0:
  8. print 'POP'
  9. else:
  10. print count
  11.  
  12.  
  13. if __name__ == '__main__':
  14. cracklepop()
Add Comment
Please, Sign In to add comment