Appearance
将多个列表打包成元组列表。
from usepy import zip_tuple
*lists
>>> zip_tuple([1, 2, 3], ['a', 'b', 'c']) [(1, 'a'), (2, 'b'), (3, 'c')]