Created
August 24, 2018 05:48
-
-
Save iamgini/5ed9a333db5e9990e201b1152051ac9e to your computer and use it in GitHub Desktop.
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
# Simple python script to generate numbers from 1 to 100 | |
# But on multiples of three print "Loktar" instead of the number, | |
# and on multiples of five print "Ogar". | |
# and on multiples of both 3 and 5 your program should print "LoktarOgar". | |
# author : Gineesh ([email protected]) | |
# run the code as python python-1to100-loop.py | |
x = 1 | |
while x < 101: | |
# check if the value can be divided by both 5 and 3 (multiple of 5 and 3) | |
if x % 3 == 0 and x % 5 == 0: | |
print('LoktarOgar') | |
# check if the value can be divided by 3 | |
elif x % 3 == 0: | |
print('Loktar') | |
# check if the value can be divided by 5 | |
elif x % 5 == 0: | |
print('Ogar') | |
else: | |
print(x) | |
x += 1 # x = x + 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment