mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 04:11:31 +07:00
17 lines
186 B
Python
17 lines
186 B
Python
def test1():
|
|
for i in "abc":
|
|
j = 1
|
|
print(j)
|
|
|
|
|
|
def test2():
|
|
for i in (1, 2):
|
|
j = 1
|
|
print(j)
|
|
|
|
|
|
def test3():
|
|
for i in [1, 2]:
|
|
j = 1
|
|
print(j)
|