中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中的函數與變量有什么用

發布時間:2021-10-28 10:21:41 來源:億速云 閱讀:140 作者:小新 欄目:編程語言

這篇文章主要介紹Python中的函數與變量有什么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

 

首先大家先來看一看這個代碼演示,理解下Python中的函數與變量的關系:

 

def cheese_and_crackers(cheese_count, boxes_of_crackers):

print "You have %d cheeses!" % cheese_count

print "You have %d boxes of crackers!" % boxes_of_crackers

print "Man that's enough for a party!"

print "Get a blanket.\n"

 

print "We can just give the function numbers directly:"

cheese_and_crackers(20, 30)

 

print "OR, we can use variables from our script:"

amount_of_cheese = 10

amount_of_crackers = 50

 

cheese_and_crackers(amount_of_cheese, amount_of_crackers)

 

print "We can even do math inside too:"

cheese_and_crackers(10 + 20, 5 + 6)

 

print "And we can combine the two, variables and math:"

cheese_and_crackers(amount_of_cheese + 100, amount_of_crackers + 1000)

 

通過這個案例,我們可以發現函數 cheese_and_crackers 傳遞很多的參數,然后在函數里把它們打印出來。我們可以在函數里用變量名,可以在函數里做運算,甚至可以將變量和運算結合起來。從一方面來說,函數的參數和我們的生成變量時用的 = 賦值符類似。事實上,如果你可以用 = 給一個東西命名,你也就可以將其作為參數傳遞給一個函數。

 

下面我們再來看看剛剛編寫的代碼的終端輸出結果:

 

$ python ex19.py

We can just give the function numbers directly:

You have 20 cheeses!

You have 30 boxes of crackers!

Man that's enough for a party!

Get a blanket.

 

OR, we can use variables from our script:

You have 10 cheeses!

You have 50 boxes of crackers!

Man that's enough for a party!

Get a blanket.

 

We can even do math inside too:

You have 30 cheeses!

You have 11 boxes of crackers!

Man that's enough for a party!

Get a blanket.

 

And we can combine the two, variables and math:

You have 110 cheeses!

You have 1050 boxes of crackers!

Man that's enough for a party!

Get a blanket.

以上是“Python中的函數與變量有什么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿荣旗| 涿州市| 昆山市| 阳高县| 兴国县| 岑溪市| 广水市| 渑池县| 赤壁市| 婺源县| 扶余县| 肥东县| 新源县| 宝丰县| 南京市| 凤翔县| 古田县| 平凉市| 闸北区| 同德县| 嘉兴市| 荆门市| 酒泉市| 正定县| 岳阳市| 三亚市| 洪洞县| 吉安市| 惠安县| 龙南县| 芜湖县| 隆尧县| 疏附县| 谢通门县| 北辰区| 广灵县| 隆德县| 安多县| 玛沁县| 三明市| 阿勒泰市|