I tried to transform this sentence, "I am testing", into a list where each character is a value of the list and then return the reverse chain, like this: "gnitset ma I".
But when I try to run the program I met the error, IndexError:list assignment index out of range.
frase_lista = [""]
i = 0
for letter in "I am testing":
frase_lista [i] = letter
i += 1
print(frase_lista**)