我有一項任務,指出...如何循環這個python腳本?
創建一個條件循環,它會要求用戶輸入兩個數字。應該添加數字並顯示總和。循環還應詢問用戶他或她是否希望再次執行該操作。如果是這樣,循環應該重複,否則循環應該終止。
這是我想出了...
n1=input('Please enter your first number: ')
print "You have entered the number ",n1,""
n2=input('Pleae enter your second number: ')
print "You have entered the number ",n2,""
total=n1+n2
print "I will now add your numbers together."
print "The result is:",total
y = raw_input('Would you like to run the program again? y=yes n=no')
print'The program will now terminate.'
y='y'
while y=='y':
print 'The program will start over.'
當你運行該程序的這第一部分工作,但,當它要求你再次運行將持續註明「該方案將重來。」
我該如何允許用戶輸入或不是他們想要啓動程序,以及如何將這個文字轉換爲循環?
你能給我們整個循環代碼嗎? – shenshei 2012-02-14 11:37:48
看一下這個例子:http://wiki.python.org/moin/WhileLoop – ezdazuzena 2012-02-14 11:38:17