交替迭代两个迭代器
文章目录
Python编程技巧:交替循环迭代两个迭代器。
下面这个技巧可以交替迭代两个迭代器,
1 | import itertools |
例如,
1 | >>> a = range(0, 10, 2) |
转载请包括本文地址:https://allenwind.github.io/blog/1480
更多文章请参考:https://allenwind.github.io/blog/archives/
Python编程技巧:交替循环迭代两个迭代器。
下面这个技巧可以交替迭代两个迭代器,
1 | import itertools |
例如,
1 | >>> a = range(0, 10, 2) |
转载请包括本文地址:https://allenwind.github.io/blog/1480
更多文章请参考:https://allenwind.github.io/blog/archives/