Python的列表依次是学号,姓名和年龄,如何只输出名字?

2024-12-29 13:29:19
推荐回答(1个)
回答1:

lst=[[1,'Tom',20],[2,'Jerry',18]]

print([x[1] for x in lst])