I have a list of tuples as follows:
values = [(\'1\', \'hi\', \'you\'), (\'2\',\' bye\', \'bye\')]
However, the first element of each tuple i
You could use the following list comprehension if tuples are not required:
a_list = [a_tuple[1:] for a_tuple in values] print(a_list)
This would print the following:
[('hi', 'you'), (' bye', 'bye')]