Created
June 30, 2017 08:34
-
-
Save sinansh/f4cb65cb09778075c2257ee7f44d808d to your computer and use it in GitHub Desktop.
LYK Python/Django kursu başvuru formu
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
i=0 | |
while(i<10): | |
if (i < 5) and not(i % 2): | |
print(i) | |
elif not(i % 3): | |
print(i * i) | |
i+=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment