Itérer à travers la chaîne en python en utilisant pour la boucle

mystring = "Hello python";
for ch in mystring:
	print("Index of Element :", mystring.index(ch) , " - Element of string:",ch)
Cautious Cow