Итерация через строку с индексом в Python, используя петлю и прозвенел
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