Basically I would like to be able to tell when I’m on the Nth item in a loop iteration.
Any thoughts?
d = {1:2, 3:4, 5:6, 7:8, 9:0}
for x in d:
if last item: # <-- this line is psuedo code
print "last item :", x
else:
print x
Use
enumerate: