Skip to content

Instantly share code, notes, and snippets.

@yasinkuyu
Last active November 28, 2017 21:29
Show Gist options
  • Save yasinkuyu/34ea9da052c55c4986f9d8e883310050 to your computer and use it in GitHub Desktop.
Save yasinkuyu/34ea9da052c55c4986f9d8e883310050 to your computer and use it in GitHub Desktop.
Python If statement with modulo operator
#@yasinkuyu 08/09/2017
INDEX = 1
Continue = True
while Continue:
print INDEX
if (INDEX % 5) == 0:
print "Success"
if INDEX > 100:
Continue = False
INDEX = INDEX +1
Output >
1
2
3
4
5
Success
6
7
8
9
10
Success
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment