Skip to content

Instantly share code, notes, and snippets.

@HectorTorres
Created June 25, 2020 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HectorTorres/d73ddd964c6f868c2f77b9b9d9d5e968 to your computer and use it in GitHub Desktop.
Save HectorTorres/d73ddd964c6f868c2f77b9b9d9d5e968 to your computer and use it in GitHub Desktop.
x = 1
while x < 6:
print(x)
x += 1
print("Terminé de contar!")
x = 1
while x < 6:
print(x)
if x == 3:
break
x += 1
x = 0
while x < 6:
x += 1
if x == 3:
continue
print(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment