Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-emarquez committed Apr 20, 2022
1 parent fecb324 commit 3380a2f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Python Basic/break.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
for i in range(6):
if i % 2 != 0:
continue
print(f'Valor: {i}')
3 changes: 3 additions & 0 deletions Python Basic/continue.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
if i % 2 != 0:
continue
print(f'Valor: {i}')

0 comments on commit 3380a2f

Please sign in to comment.