Is there an operation which can change position of elements within a tuple, like for instance I have a tuple ('a', 'b') and I want to change it to ('b', 'a')
Yes it can be done by writing into a new tuple but I was wondering if there is an operation which could do it for me.