[(1,2), (2,3), (4,5), (3,4), (6,7), (6,7), (3,8)]
如何从此列表中的每个元组返回第二个值?
期望的输出:
[2, 3, 5, 4, 7, 7, 8]
python tuples list
list ×1
python ×1
tuples ×1