Created
October 29, 2020 01:38
-
-
Save soyHouston256/d0d0da6adcf6e510c948cd5f6b29f720 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
def run(): | |
for contador in range(1,101): | |
if contador % 2 !=0: | |
continue | |
print(contador) | |
for i in range(100): | |
if i==90: | |
break | |
print(i) | |
if __name__ == "__main__": | |
run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment