Itérer à travers la chaîne avec l'index en python en utilisant while boucle et a sonné

mystring = "Hello Oraask"
   
# Getting length of string 
lengthOfmystring = len(mystring) 
i = 0
   
# Iterating through the string using while loop 
while i < lengthOfmystring: 
    print("Element of string:" , mystring[i])
    i += 1
Cautious Cow