Itérer à travers les caractères d'une chaîne en python
mystring = "Hello Oraask"
# Iterating through the string using while loop
for i in mystring[6:12:1] :
# Print all characters iterated
print("Element of string:" , i)
Cautious Cow