Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
>>> m = [(1, 2, 3), (4, 5, 6)] >>> list(zip(*m)) [(1, 4), (2, 5), (3, 6)]
对于Python2.x,可以直接zip(*m)
zip(*m)