我有一個我之前編寫的腳本,現在正在嘗試創建一個主頁來運行此腳本和其他腳本。我知道我必須把它變成一個函數,然後在需要時調用它,但我在函數部分遇到了一些麻煩。任何幫助和建議,不勝感激。以下是我參考的腳本。如何將腳本變成函數
#A Python math script
a = float(raw_input("Enter the first number: "))
b = float(raw_input("Enter the second number: "))
print "Your answer is: ",(a*b)
你真的應該看看:http://docs.python.org/release/1.5.1p1/tut/functions.html –
或者當前的文檔:http://docs.python.org/release/2.7/tutorial/controlflow的.html#德罰函數(v1.5文檔已超過12年!) – dsh
你是對的。我意外地發佈了一個非常過時的文檔鏈接。 ;) –