If this answer fits you, I'd appreciate you validate it please ;)
user15235239
user15235239
Sure, I was expecting - points like hell, because stack overflow hates begginers so I'll accept it for sure!
0
To make the answer more understandable because i'm not a fan of 'use this function it just works' (it's efficient but usually lacks teaching) the enumerate funtions works just like:
#values = your list
index = 0
for value in values:
print(index, value)
index += 1