markdown python,语法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown python,语法相关的知识,希望对你有一定的参考价值。

zip 中数组加 * 号, 为解压的意思
```
In [123]: list(zip([1,2,3,4]))
Out[123]: [(1,), (2,), (3,), (4,)]

In [124]: a=[1,2,3]
     ...: b=[4,5,6]
     ...: c=[7,8,9]
     ...: list(zip(a,b,c))
     ...:
Out[124]: [(1, 4, 7), (2, 5, 8), (3, 6, 9)]

In [125]: ret = list(zip(a,b,c))

In [126]: ret
Out[126]: [(1, 4, 7), (2, 5, 8), (3, 6, 9)]

In [127]: list(zip(*ret))
Out[127]: [(1, 2, 3), (4, 5, 6), (7, 8, 9)]

In [128]: a=[1,2,3]
     ...: b=[4,5,6,7]
     ...: c=[8,9,10,11,12]
     ...:

In [129]: list(zip(a,b,c))
Out[129]: [(1, 4, 8), (2, 5, 9), (3, 6, 10)]
```
[From CSDN Blog](https://blog.csdn.net/csdn15698845876/article/details/73411541)

以上是关于markdown python,语法的主要内容,如果未能解决你的问题,请参考以下文章

markdown python,语法

markdown python,练习,语法

markdown python,语法,运动

markdown python语法,for循环,枚举

markdown Python numpy矩阵数组操作基本语法

markdown #Python VS ES6语法比较