摘要: 平铺一个多维列表 两种方式 1. 使用包 sftpusers = [[1,2,3],['a','abc']] from itertools import chain list(chain( sftpusers)) 2. 自己实现 def flat_gen(x): def iselement(e): 阅读全文
posted @ 2019-09-03 17:27 juila 阅读(735) 评论(0) 推荐(0) 编辑