3 lines
93 B
Python
3 lines
93 B
Python
a=['apple','banana','cherry']
|
|
for index,value in enumerate(a):
|
|
print(f'{index}: {value}') |