kopia lustrzana https://github.com/micropython/micropython
11 wiersze
342 B
Python
11 wiersze
342 B
Python
print(list(enumerate([])))
|
|
print(list(enumerate([1, 2, 3])))
|
|
print(list(enumerate([1, 2, 3], 5)))
|
|
print(list(enumerate([1, 2, 3], -5)))
|
|
print(list(enumerate(range(100))))
|
|
|
|
# specifying args with keywords
|
|
print(list(enumerate([1, 2, 3], start=1)))
|
|
print(list(enumerate(iterable=[1, 2, 3])))
|
|
print(list(enumerate(iterable=[1, 2, 3], start=1)))
|