Python |在user_input之后停止/重新启动脚本

时间:2016-12-21 13:34:48

标签: python if-statement user-input

就在我提出这个问题之前,我想说我对Python很陌生,所以我要问的可能很简单。

我的问题是:如何在回答完这个问题后停止脚本。

1.1

所以我真正想要的是当用户回复“是”'我希望解决方案出现并停止脚本,或者甚至可能重启。

2 个答案:

答案 0 :(得分:0)

这可以达到一个简单的退出。

我也使用了较低的功能,所以看起来会更加pythonic

只需一个简单的循环:

s1 = "yes"
while s1 == "yes":
  s1 = input("Is your phone freezing/stuttering? ").lower()
祝你好运!

答案 1 :(得分:-3)

你可以做的是围绕它创建一个循环

x = 4
while x == 4:
    s1 = input("Is your phone freezing/stuttering? ")
    if s1 == "Yes" or s1 == "yes":
        print("Try deleting some apps and this might help with your problem")
    if s1 == "No" or s1 == "no":
        def foo():
            while True:
                return False
        break #<-- only if you want the program to end after false#