我刚刚使用python3在PyScripter中启动了一个非常基本的程序。我已经要求用户输入一个数字,我的程序会计算出这个数字。这一切都运行良好,但我想知道是否有人知道如何在python作为用户,如果他们希望程序再次运行或退出。如果是这样,我如何再次运行caculator,如何在那里退出请求。 I.E“你想再次运行程序输入yes或no * if yes如果没有办法阻止它执行,如何再次执行相同的代码。感谢你的帮助。
Number = int(input("Number Required"))
if Number >= 1 and Number<=50:
add =(Number * 5)
print("The Number amount it", add)
elif Number <= 80 and Number >= 50:
add =(Number * 4)
print("The Number amount it", add)
elif Number <= 100 and Number >= 80:
add =(Number * 2.5)
print("The Number amount it", add)
run = input("would you like to check again type yes or no")
答案 0 :(得分:1)
在while
循环
repeat = True
while repeat:
Number = int(input("Number Required"))
if Number >= 1 and Number<=50:
add =(Number * 5)
print("The Number amount it", add)
elif Number <= 80 and Number >= 50:
add =(Number * 4)
print("The Number amount it", add)
elif Number <= 100 and Number >= 80:
add =(Number * 2.5)
print("The Number amount it", add)
run = input("would you like to check again type yes or no")
if run == 'no': repeat = False
小提示
而不是像Number >= 1 and Number<=50
那样进行长时间的比较,而是可以做为1 <= Number <= 50
的Padraic suggested。它更容易,更易读。
答案 1 :(得分:0)
一旦一个进程完成就无法启动它 - 它需要另一个进程或服务来重新启动它,但是从你提出问题的方式来看,你只需要循环一些逻辑而不退出进程。
在更新问题时更新我的答案
while True:
x = input("Enter your input: \n")
some_logic_here()
答案 2 :(得分:0)
我写了一个简单的计算器程序,它具有我认为你在这里寻找的功能:https://github.com/ArnoldM904/Random_Programs/blob/master/Python_Programs/BlackBox_Area%26Volume.py
为了保持简单,尽管一个(很多选项)将是一个基本的Restart()函数。
我在我的例子中计算后调用的Restart()函数:
def Restart():
toMenu = raw_input("\nTo go back to main menu, type '1'. To exit, type '2'.\n\n")
if toMenu == '1':
menu() # My menu function
elif toMenu == '2':
exit() # Built-in Python Exit-program option
else:
invalid() # My "Invalid input" error message
答案 3 :(得分:0)
有一个涵盖所有可能性的提示
while True:
answer = input("Enter number or 'q' to exit")
if answer == 'q':
break
try:
Number = int(answer)
except ValueError:
print("'{}' is not a number".format(answer))
continue
... your calculator here ...