iter的一种用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iter的一种用法相关的知识,希望对你有一定的参考价值。
#! /usr/bin/env python # -*- coding:utf-8 -*- import random sample=range(101) random.shuffle(sample) for _ in iter(sample.pop,100): pass # doSomething with _ -------------------------------------- for _ in sample: if _==100: break pass # doSomething with _
以上是关于iter的一种用法的主要内容,如果未能解决你的问题,请参考以下文章
“Iterable<Element> 不能转换为 List<Element>” - `List` 不是 `Iterable` 的一种吗?