5 lines
75 B
Python
5 lines
75 B
Python
>>> for i, e in enumerate(a):
|
|
... print(f"a[{i}] = {repr(e)}")
|
|
...
|
|
???
|