Below, we have provided a list of tuples. Write a for loop that saves the second element of each tuple into a list called seconds. code example
Example: get second element of tuple python
#get nth element of a tupple in python
n = 1 # Whatever the value of N is. . .
print(x[n]) #were x is the tupple, for n = 1 you get the second element