mirror of
https://github.com/Hizenberg469/Python-tutorial.git
synced 2026-04-19 15:12:22 +03:00
10 lines
190 B
Python
10 lines
190 B
Python
def special_for(iterable):
|
|
iterator = iter(iterable)
|
|
|
|
while True:
|
|
try:
|
|
print(next(iterator))
|
|
except StopIteration:
|
|
break
|
|
|
|
special_for([1,2,3]) |