for 루프에서 직접 사용할 수 있는 객체를 반복 가능 객체(iterable)라고 합니다.
next() 함수에 의해 호출되고 계속해서 다음 값을 반환할 수 있는 객체를 반복자라고 합니다.
모든 반복 가능한 객체는 다음과 같습니다. 내장 함수 iter()를 통해 반복자로 변환됩니다.
for 루프를 사용하면 프로그램은 처리할 객체의 반복자 객체를 자동으로 호출한 다음 stoplteration 예외가 감지될 때까지 next() 메서드를 사용합니다.
>>> l = [4,5,6,7,8,9,0] #这是一个列表 >>> i = iter(l) #可迭代对象转换为迭代器; >>> next(i) 4 >>> next(i) 5 >>> next(i) 6 >>> next(i) 7 >>> next(i) 8 >>> next(i) 9 >>> next(i) 0 >>> next(i) Traceback (most recent call last): File "<stdin>", line 1, in <module> StopIteration
목록에 0을 초과하는 숫자가 없기 때문에 범위를 초과하면 StopIteration 예외가 반환됩니다.
제작 환경에서 판단하는 방법
>>> L = [4,5,6] >>> I = L.__iter__() >>> L.__next__() Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'list' object has no attribute '__next__' >>> I.__next__() 4 >>> from collections import Iterator, Iterable >>> isinstance(L, Iterable) True >>> isinstance(L, Iterator) False >>> isinstance(I, Iterable) True >>> isinstance(I, Iterator) True >>> [x**2 for x in I] [25, 36]
위 내용은 Python 반복자의 예에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!