摘要: 未来开启分享,学习之路~ 阅读全文
posted @ 2019-07-05 15:53 juila 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 平铺一个多维列表 两种方式 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 阅读(719) 评论(0) 推荐(0) 编辑