I have a list of tuples as follows:
values = [(\'1\', \'hi\', \'you\'), (\'2\',\' bye\', \'bye\')]
However, the first element of each tuple i
Firstly tuple is immutable.
Secondly try this approach using a list comprehension:
a_list = [el[1:] for el in values]
Check slice notation.