记录点滴

Home Archives About
2018-08-29
python

python zip 2d array transpose

Python 内置 zip 二维矩阵转置

使用 zip

矩阵的转置 最简单的做法

1
2
3
4
5
6
>>> m = [[1, 2],
[3, 4],
[5, 6]]
>>> zip(*m) #Python 3: list(zip(*m))
[(1, 3, 5),
(2, 4, 6)]

zip()补充

Python zip() 函数

Share
  • 2d-array
  • python
Newer
Binary Tree Inorder Traversal
Older
bigflow top one field

分类

  • bigflow
  • cpp
  • django
  • git
  • json
  • leetcode
  • linux
  • mongodb
  • mysql
  • note
  • opencv
  • python
  • redis

标签

  • 2d-array
  • bigflow
  • binary tree
  • hadoop
  • lambda
  • leetcode
  • python
  • python3

标签云

2d-array bigflow binary tree hadoop lambda leetcode python python3

归档

  • 一月 2020
  • 十二月 2018
  • 十一月 2018
  • 十月 2018
  • 九月 2018
  • 八月 2018
  • 三月 2018
  • 二月 2018
  • 一月 2018
  • 十一月 2017
  • 十月 2017
  • 九月 2017
  • 四月 2017
  • 二月 2017
  • 十一月 2012
  • 十月 2012

最新文章

  • Python requests 超时 异常捕捉
  • mysql distinct count group by
  • (no title)
  • Subarray Sum Equals K
  • Path Sum III
© 2020 Krevy Li
Powered by Hexo
Home Archives About