Appearance
将多个列表打包成字典。
from usepy import zip_dict
*lists
>>> zip_dict([1, 2, 3], ['a', 'b', 'c']) {1: 'a', 2: 'b', 3: 'c'}