Skip to content

Instantly share code, notes, and snippets.

@Valindo
Created October 7, 2014 17:36
Show Gist options
  • Save Valindo/997865e42650f4285875 to your computer and use it in GitHub Desktop.
Save Valindo/997865e42650f4285875 to your computer and use it in GitHub Desktop.
def check(N):
for i in range (1,N+1):
if i%3 == 0:
if i%5 == 0:
print "Whazaa"
else:
print "Hip"
elif i%5==0:
print "Hop"
else:
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment