Python:如何在while循环中的break之前插入一个语句

时间:2014-08-11 21:25:57

标签: python python-2.7 while-loop

对于我在Python中使用的以下while循环:

while True: 
    <do something>
    if <condition>: break 

但是我希望它在退出之前做一些事情,比如:

while True: 
    <do something>
    if <condition>: 
    <do something> 
    then break 

有可能吗?什么是语法?谢谢!

1 个答案:

答案 0 :(得分:6)

只需将语句放在if

while True: 
    <do something>
    if <condition>: 
        <do something> 
        break