标签:序列 nbsp 处理 bsp 返回 pytho lis 执行 python
zip() :对两个序列做对应处理,比如定义 list1 = [1, 2, 3] , list2 = [‘a‘, ‘b‘, ‘c‘] ,执行 zip(list1, list2) 返回结果为 [ (1, ‘a‘), (2, ‘b‘), (3, ‘c‘) ]
Python Z
原文地址:http://www.cnblogs.com/pzk7788/p/6718546.html