91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

中西区| 曲阜市| 荔波县| 石渠县| 星子县| 宁晋县| 南乐县| 水富县| 雅安市| 特克斯县| 虎林市| 茶陵县| 鄂伦春自治旗| 高唐县| 卢湾区| 光泽县| 木兰县| 大同县| 高台县| 光山县| 怀集县| 连江县| 德钦县| 嘉禾县| 武汉市| 江山市| 象州县| 辉南县| 琼海市| 鸡东县| 辉县市| 化隆| 延川县| 垦利县| 竹北市| 湖口县| 饶阳县| 连州市| 永川市| 同德县| 都兰县|