The most common answer is:
"""
This program uses a for loop to print out each letter in the string on its
own line using indices.
"""
my_string = "hello"
for i in range(len(my_string)):
print(my_string[i])
This code iterates over each index in the range that spans the length of my_string
and prints the character at each index on a separate line.