2022-11-13 10:39:28 -08:00

5 lines
75 B
Python

>>> for i, e in enumerate(a):
... print(f"a[{i}] = {repr(e)}")
...
???