I have a list of tuples as follows:
values = [('1', 'hi', 'you'), ('2',' bye', 'bye')]
However, the first element of each tuple is not needed. The desired output is:
[('hi', 'you'), (' bye', 'bye')]
I've done enough research to know I can't manipulate tuples but I can't seem to find an answer on how to successfully remove the first element of each tuple in the list.