L = ["a","b","c","d","e","f","g"]
index=0
for index in range(len(L)):
		print ("index=",index, "valeur=",len(L))
		index= index + 1
