14
파이썬에서 do-while 루프를 모방합니까?
파이썬 프로그램에서 do-while 루프를 에뮬레이트해야합니다. 불행히도 다음과 같은 간단한 코드는 작동하지 않습니다. list_of_ints = [ 1, 2, 3 ] iterator = list_of_ints.__iter__() element = None while True: if element: print element try: element = iterator.next() except StopIteration: break print "done" "1,2,3, done"대신 다음 출력을 인쇄합니다. [stdout:]1 [stdout:]2 [stdout:]3 None['Traceback (most …
797
python
while-loop
do-while