For 루프의 반환 문
Python에서 루프 내의 반환 문은 루프를 조기에 종료할 수 있습니다. 이는 제공된 예에서 볼 수 있듯이 예상치 못한 동작으로 이어질 수 있습니다.
주어진 코드에서 make_list() 함수는 세 마리의 애완동물에 대한 데이터를 수집하는 것을 목표로 합니다. 그러나 루프 내 return 문 배치로 인해 첫 번째 애완동물에 대한 데이터만 기록됩니다. 이는 루프의 첫 번째 반복 후 return 문이 함수를 즉시 종료하기 때문입니다.
이 문제를 해결하려면 return 문을 루프 외부로 이동하여 루프가 함수 이전 세 번의 반복을 모두 완료할 수 있도록 해야 합니다. 보고. 수정된 코드는 다음과 같습니다.
<code class="python">import pet_class #The make_list function gets data from the user for three pets. The function # returns a list of pet objects containing the data. def make_list(): #create empty list. pet_list = [] #Add three pet objects to the list. print 'Enter data for three pets.' for count in range (1, 4): #get the pet data. print 'Pet number ' + str(count) + ':' name = raw_input('Enter the pet name:') animal = raw_input('Enter the pet animal type:') age = raw_input('Enter the pet age:') #create a new pet object in memory and assign it #to the pet variable pet = pet_class.PetName(name,animal,age) #Add the object to the list. pet_list.append(pet) return pet_list pets = make_list()</code>
이번 수정을 통해 함수는 의도한 대로 세 마리의 애완동물 모두에 대한 데이터를 올바르게 수집합니다.
위 내용은 Return 문은 언제 Python에서 루프를 종료할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!