Python checkio Transposed Matrix map与zip的使用

题目要求输入矩阵

输出矩阵的转置

简单粗暴

checkio = lambda matrix:map(list, zip(*matrix))

checkio([[1, 2, 3],
              [4, 5, 6],
              [7, 8, 9]]) == [[1, 4, 7],
                                   [2, 5, 8],
                                   [3, 6, 9]]


map用法:map(函数, 可迭代的参数)


zip用法:

matrix = [[1, 2, 3],
              [4, 5, 6],
              [7, 8, 9]]

zip(*matrix)=zip([1, 2, 3],
                          [4, 5, 6],
                          [7, 8, 9])

这是一个unzip的过程

你可能感兴趣的:(Python checkio Transposed Matrix map与zip的使用)