So I got this list:
my_old_list = [(1,2),(3,4),(5,6),(7,8),(9,0)]
and I would like to reverse the content of the elements to:
my_new_list = [(2,1),(4,3),(6,5),(8,7),(0,9)]
I have find a lot of different things, but it never really changes the list into the way I want.