Lets suppose I have a list like this:
mylist = [\"a\",\"b\",\"c\",\"d\"]
To get the values printed along with their index I can use Python\
Be explicit about the tuples.
[(i, j) for (i, j) in enumerate(mylist)]