I have a tuple/list inside a list like this:
[(\'foo\',\'bar\'),(\'foo1\',\'bar1\'),(\'foofoo\',\'barbar\')]
What is the fastest way in pyt
A fancy way:
[t[::-1] for t in mylist]