【python】itertools.chain类解析
import itertools
b=[[1, 2, 3]] +[[4, 5, 6, 7, 8, 9]]
a=itertools.chain(*map(list,b))for e in a:print(e)
输出:
1
2
3
4
5
6
7
8
9
itertools中chain类的代码片段。
class chain(object):"""chain(*iterables) --> chain object #需要多个可迭代器Return a chain object whose .__next__() method returns elements from thefirst iterable until it is exhausted, then elements from the nextiterable, until all of the iterables are exhausted."""
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
