Iterar a través de la cadena con el índice en pitón usando while loop y rang

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