I need to emulate a do-while loop in a Python program.
(我需要在Python程序中模拟do-while循环。)
Unfortunately, the following straightforward code does not work: (不幸的是,以下简单的代码不起作用:)
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"
Instead of "1,2,3,done", it prints the following output:
(而不是“1,2,3,完成”,它打印以下输出:)
[stdout:]1
[stdout:]2
[stdout:]3
None['Traceback (most recent call last):
', ' File "test_python.py", line 8, in <module>
s = i.next()
', 'StopIteration
']
What can I do in order to catch the 'stop iteration' exception and break a while loop properly?
(我能做些什么来捕获'stop iteration'异常并正确地打破while循环?)
An example of why such a thing may be needed is shown below as pseudocode.
(以下将伪代码示为可能需要这样的事物的示例。)
State machine:
(状态机:)
s = ""
while True :
if state is STATE_CODE :
if "//" in s :
tokens.add( TOKEN_COMMENT, s.split( "//" )[1] )
state = STATE_COMMENT
else :
tokens.add( TOKEN_CODE, s )
if state is STATE_COMMENT :
if "//" in s :
tokens.append( TOKEN_COMMENT, s.split( "//" )[1] )
else
state = STATE_CODE
# Re-evaluate same line
continue
try :
s = i.next()
except StopIteration :
break
ask by grigoryvp translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…