gpt4 book ai didi

python - 如何从循环中的函数中断 Python while 循环

转载 作者:行者123 更新时间:2023-11-28 22:00:36 25 4
gpt4 key购买 nike

while True:
input = raw_input("enter input: ")
result = useInput(input)

def useInput(input):
if input == "exit":
break #return 0 / quit / etc.. i want to break the while loop from within this function

我知道我可以将“if 逻辑”直接放在 while 循环中,但我希望它在函数中。有没有办法从循环中调用的函数中打破 while 循环?

最佳答案

  1. 引发异常,您可以在 While 循环之外处理
  2. 返回一个由调用者捕获并进行相应处理的标志。请注意,直接在 while 循环中“if 逻辑” 是最优选的方式。

关于python - 如何从循环中的函数中断 Python while 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14522923/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com