Provided is a list of tuples. Create another list called t_check that contains the third element of every tuple. code example
Example: python second element of every tuple in list
n = 2 # N. . .
[x[n] for x in elements]
n = 2 # N. . .
[x[n] for x in elements]