0
- 我是新來的python所以請原諒基本錯誤。
- 所以我創建了一個計算器,但是我想通過允許用戶運行該程序,如果他們輸入'True',它會將'running'設置爲true來改善它。這反過來會運行計算器。但是,這似乎並沒有發生。
繼承人我的代碼:我想設置一個值爲'真',所以我可以啓動一個程序
def start():
print("Hello world!")
name=input("Please enter your name: ")
print("Hi {0}".format(name))
run=input("type | True | to run the program: ").capitalize()
if run== "True":
running = True
else:
print("You need to enter | True | to run the program")
def main():
if running== True:
print("1 = Add")
print("2 = Subtract")
print("3 = Times")
print("4 = Divide")
print("5 = Quit program")
calc=int(input("enter number of choise: "))
是的,這工作完美,謝謝。 –