Skip to content

Instantly share code, notes, and snippets.

@soyHouston256
Created October 29, 2020 01:38
Show Gist options
  • Save soyHouston256/d0d0da6adcf6e510c948cd5f6b29f720 to your computer and use it in GitHub Desktop.
Save soyHouston256/d0d0da6adcf6e510c948cd5f6b29f720 to your computer and use it in GitHub Desktop.
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