Python의 Yield 키워드를 이해하려면 반복 가능 항목과 생성기에 익숙해야 합니다.
Iterable은 한 번에 하나의 요소에 대해 반복할 수 있는 목록 및 문자열과 같은 객체입니다.
생성기는 전체 시퀀스를 메모리에 저장하지 않고 한 번에 하나씩 값을 생성하는 반복기입니다.
Yield 키워드는 생성기 함수의 return 문과 같은 기능을 합니다. 그러나 함수를 종료하는 대신 실행을 일시 중지하고 값을 반환합니다. 반복자가 재개되면 일시 중지된 위치부터 실행이 계속됩니다.
Generator:
def _get_child_candidates(self, distance, min_dist, max_dist): # Check if a left child exists and the distance is within range if self._leftchild and distance - max_dist < self._median: yield self._leftchild # Check if a right child exists and the distance is within range if self._rightchild and distance + max_dist >= self._median: yield self._rightchild
이 생성기 함수는 하위 노드를 반환합니다. 지정된 거리 내에서 range.
호출자:
result, candidates = [], [self] # Initialize empty result and candidates list while candidates: # Iterate while candidates are available node = candidates.pop() distance = node._get_dist(obj) if distance <= max_dist and distance >= min_dist: # Check distance range result.extend(node._values) candidates.extend(node._get_child_candidates(distance, min_dist, max_dist)) # Add children to candidates list return result
호출자는 후보 노드 목록을 초기화하고 반복하며 생성기 기능을 사용하여 반복하는 동안 후보 목록을 확장합니다. 거리 범위를 확인하고 적절한 경우 하위 노드를 추가합니다.
yield 키워드를 사용하면 발전기 소진을 제어할 수 있습니다. 반복을 중지하는 플래그를 설정하면 생성기 값에 대한 액세스를 일시 중지하고 다시 시작할 수 있습니다.
itertools 모듈은 iterable을 조작하는 기능을 제공합니다. 예를 들어 목록의 순열을 쉽게 만들 수 있습니다.
위 내용은 Python의 'yield' 키워드는 생성기를 어떻게 생성하고 관리합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!