PROGRAMMATION DE L'ACCUMULATEUR
# Accumulator
# The count is the accumulator
count = 0
for item in list:
print item
count +=1
Frosty