Skip to content

Commit c5316f2

Browse files
author
morvanabonin
committed
...
1 parent 6be3eec commit c5316f2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

for.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
impostos = ['MEI', 'Simples']
2+
for imposto in impostos:
3+
print(imposto)
4+
5+
for imposto in impostos:
6+
if imposto.startswith("S"):
7+
continue
8+
print(imposto)
9+
10+
lista = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
11+
for i in lista:
12+
print(i)
13+
14+
for i in range(5):
15+
print(i)
16+

0 commit comments

Comments
 (0)