Skip to content

Commit 3380a2f

Browse files
update
1 parent fecb324 commit 3380a2f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

Python Basic/break.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
for i in range(6):
2+
if i % 2 != 0:
3+
continue
4+
print(f'Valor: {i}')

Python Basic/continue.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
if i % 2 != 0:
2+
continue
3+
print(f'Valor: {i}')

0 commit comments

Comments
 (0)