I have a list:
lst = ['abcdef', 'uvwxyz']
I want to get as result:
['fedcba', 'zyxwvu']
How can I do that in Python 3 (and Python 2 if it's possible)?
EDIT :
Here i want to Reverse the content of each element in a list !
NOT Reverse the elements in the list !
If i do:
lst[::-1]
I'll get:
['uvwxyz', 'abcdef']
and that's not what i want !