Respuesta :

myString = myString[::-1]  is the most pythonic way to write a for loop that adds the characters from myString to reversedString in reverse order in python.

What is Loop in Python?

A for loop is used to repeat a sequence (that is either a list, a tuple, a dictionary, a set, or a string).

This is similar to the iterator method in other object-oriented programming languages than the for keyword in other programming languages.

The for loop allows us to run a set of statements once for each item in a list, tuple, set, or other data structure.

Example

Print each fruit in a fruit list:

fruits = ["apple", "banana", "cherry"]

for x in fruits:

 print(x)

To learn more about object-oriented programming, visit: https://brainly.com/question/14078098

#SPJ4