摘要: itertools模块提供的全部是处理迭代功能的函数,它们的返回值不是list,而是Iterator,只有用for循环迭代的时候才真正计算。 >>> import itertools>>> ns = itertools.repeat('A', 3)>>> for n in ns:... print( 阅读全文
posted @ 2018-03-29 08:14 夜游星 阅读(249) 评论(0) 推荐(0) 编辑