《笨方法學 Python 3》19.函式和變數
阿新 • • 發佈:2018-12-08
#def定義一個變數,cheese乳酪, crackers餅乾 def cheese_and_crackers(cheese_count, boxes_of_crackers): print(f"You have {cheese_count} cheeses!") print(f"You have {boxes_of_crackers} boxes of crackers!") print("Man that's enough for a party!") print("Get a blanket.\n") print("我們可以直接給函式傳入數字") #呼叫函式 cheese_and_crackers(20,30) print("或者,我們可以使用指令碼中的變數:") #下面的兩個變數是全域性變數 amount_of_cheese = 10 amount_of_crackers = 50 #呼叫函式 cheese_and_crackers(amount_of_cheese, amount_of_crackers) print("我們甚至可以在裡面做數學運算:") #呼叫函式 cheese_and_crackers(10+20,5+6) print("我們可以把變數和數學運算起來") #呼叫函式 cheese_and_crackers(amount_of_cheese + 100,amount_of_crackers + 10000)