有没有解决方案可以在第一个输入之后退出而不继续第二个输入?

问题描述

active = True
while active:
    city = input("Please enter quit to stop the user input. Enter City: ")
    temp = input("Enter Temp: ")
    if city == 'quit':
        active = False
    else:
        print()

#我正在尝试查看如何退出而不进入下一个输入。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)