If you have some given list, and want to iterate over its items and indices, you can use enumerate():
for index, item in enumerate(my_list):
print index, item
If you only need the indices, you can use range():
for i in range(len(my_list)):
print i