我有两个清单
a = [1,2,3] b = [9,10]
我想将这两个列表组合(zip)到一个列表c中
c
c = [(1,9), (2,10), (3, )]
Python中的标准库中是否有任何函数可以执行此操作?
python data-structures
data-structures ×1
python ×1