Created
October 29, 2020 01:38
-
-
Save soyHouston256/d0d0da6adcf6e510c948cd5f6b29f720 to your computer and use it in GitHub Desktop.
Revisions
-
Max Houston Ramirez Martel created this gist
Oct 29, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ 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()