请看一下这个收缩:
M = [[1,2,3],
[4,5,6],
[7,8,9]]
T = [row[1] for row in M]
print(T)
结果是 [2, 5, 8]
我设法在这里找到了一些东西:http: //docs.python.org/py3k/tutorial/datastructures.html#nested-list-comprehensions
但我不满意我对这个“原始”方案的理解。你能告诉我在文档中的其他地方我可以阅读它吗?
顺便说一句,为什么是生的?好像是柱子?