30
“yield”키워드는 무엇을합니까?
yield파이썬 에서 키워드를 사용 하는 것은 무엇이며 어떤 역할을합니까? 예를 들어,이 코드 1 을 이해하려고합니다 . def _get_child_candidates(self, distance, min_dist, max_dist): if self._leftchild and distance - max_dist < self._median: yield self._leftchild if self._rightchild and distance + max_dist >= self._median: yield self._rightchild 그리고 이것은 발신자입니다. result, candidates = [], [self] while …