Here is something that you might want to do in python:
1 2 3 |
def my_function(): for i,val in enumerate(data): print '{},{}'.format(i,val) |
Here is something that you might want to do in python:
1 2 3 |
def my_function(): for i,val in enumerate(data): print '{},{}'.format(i,val) |
Leave a Reply