I would like to iterate through a list and reference the iteration number that I'm on. I can do it with a simple counter, but is there a built in function for this?
List= list(range(0,6))
count = 0
for item in List:
print "This is interation ", str(count)
count += 1