Skip to content
On this page

zip_tuple

将多个列表打包成元组列表。

python
from usepy import zip_tuple

参数

  • *lists: 要打包的列表zip_tuple

例子

python
>>> zip_tuple([1, 2, 3], ['a', 'b', 'c'])
[(1, 'a'), (2, 'b'), (3, 'c')]

Released under the MIT License.