I have the following dataframe.
my_list= [(343, 4364), (221, 791), (221, 2847), (21, 1296)]
from this list I would like to pick the second value from the list values and get the following list.
new_list = [4364, 791, 2847, 1296]
Can any one help on this?
new_list = [i[1] for i in my_list]?