Last active
November 28, 2017 21:29
-
-
Save yasinkuyu/34ea9da052c55c4986f9d8e883310050 to your computer and use it in GitHub Desktop.
Python If statement with modulo operator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#@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