在函数内部使用Python中断
问题描述
我使用的是Python3.5,我想在函数中使用break
命令,但我不知道如何使用。
我想使用这样的东西:
def stopIfZero(a):
if int(a) == 0:
break
else:
print('Continue')
while True:
stopIfZero(input('Number: '))
我知道我可以只使用以下代码:
while True:
a = int(input('Number: '))
if a == 0:
break
else:
print('Continue')
如果您不关心print('Continue')
部分,您甚至可以执行以下一行操作:
while a != 0: a = int(input('Number: '))
(只要已将分配给非0的对象)
但是,我想使用函数,因为其他时候它可能会有很大帮助。
谢谢您的帮助。
解决方案
通常,这是通过返回某个值来完成的,该值允许您决定是否要停止While循环(即某些条件为真还是假):
def stopIfZero(a):
if int(a) == 0:
return True
else:
print('Continue')
return False
while True:
if stopIfZero(input('Number: ')):
break
相关文章