I have some object.ID-s which I try to store in the user session as tuple. When I add first one it works but tuple looks like (u\'2\',) but when I try to add ne
(u\'2\',)
a = ('x', 'y') b = a + ('z',) print(b)
a = ('x', 'y') b = a + tuple('b') print(b)