Skip to content

Instantly share code, notes, and snippets.

@Mrpickles-666
Created November 7, 2022 18:51
Show Gist options
  • Save Mrpickles-666/531690f7a3aeb8776edb016b19c8ce5f to your computer and use it in GitHub Desktop.
Save Mrpickles-666/531690f7a3aeb8776edb016b19c8ce5f to your computer and use it in GitHub Desktop.
Estrutura de repetição sem aquisição do número 3
x = 0
while x <= 10:
if x == 3:
x = x + 1
continue
print(x)
x = x + 1
print('Acabou')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment