enumerate 1

This commit is contained in:
Mert Gör 🇹🇷 2023-05-29 17:39:47 +03:00
parent 50db63ef4f
commit cba3273020
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,4 @@
a = [12, 34, 2, 78, 4, 30, -9, 44, 88, 41]
for index, val in enumerate(a):
print(index, val)