繁体   English   中英

如果命令,在停止程序退出Python之前该怎么做

[英]What to do from stopping the program from exiting in Python before if command

我使用以下代码构建一个从用户获取输入的简单Python程序。

Name = raw_input('Enter your name: ')
Age = raw_input('Enter you age:')
Qualifications = raw_input('Enter you Qualification(s):')
A = raw_input()

print "Hello" +'.'+ "Your Name is " + Name + ". " + "Your Age is " + Age + ". " + "Your Qualification(s) is/are:" + Qualifications + "." 
print "If the above data is correct, type yes. If not, type no. Typing no will restart he program and make you write the form again." + A
if A in ['y', 'Y', 'yes', 'Yes', 'YES']:
    print 'Thanks for your submission'
if A in ['No' , 'no' , 'NO' ,'n' , 'N']:
    reload()

程序在if命令之前完成。

除了['y', 'Y', 'yes', 'Yes', 'YES']['No' , 'no' , 'NO' ,'n' , 'N'] ,程序将完成并且不执行其各自if -clauses中的任何语句。

reload()函数不会按预期执行。 它用于重新加载模块,应该在解释器中使用。 它还需要先前导入的module作为它的参数,调用它不会引发TypeError

所以为了再次问问题,你需要一个循环。 例如:

while True:
    name = raw_input('Enter your name: ')
    age = raw_input('Enter your age: ')
    qualifications = raw_input('Enter your Qualification(s): ')

    print "Hello. Your name is {}. Your age is {}. Your qualifications are: {}".format(name, age, qualifications)
    quit = raw_input("Is the above data correct [yY]? ").lower() # notice the lower()
    if quit in ("y", "yes"):
        break
    else:
        # If the input was anything but y, yes or any variation of those.
        # for example no, foo, bar, asdf..
        print "Rewrite the form below"

如果你现在输入任何比别的y, Y或任何变化yes ,该方案将再次提出的问题。

在打印“您的名字是......”之后移动您的A raw_input行。 像这样:

我还让脚本继续要求重新启动,直到输入有效。

Name = raw_input('Enter your name: ')
Age = raw_input('Enter you age:')
Qualifications = raw_input('Enter you Qualification(s):')

print "Hello" +'.'+ "Your Name is " + Name + ". " + "Your Age is " + Age + ". " + "Your Qualification(s) is/are:" + Qualifications + "."
print "If the above data is correct, type yes. If not, type no. Typing no will restart he program and make you write the form again."

yes = ['y', 'Y', 'yes', 'Yes', 'YES']
no = ['No' , 'no' , 'NO' ,'n' , 'N']

A = ''

while A not in (yes+no):   # keep asking until the answer is a valid yes/no
    A = raw_input("Again?: ")

if A in yes:
    print 'Thanks for your submission'
if A in no:
    reload()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM