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

溫馨提示×

溫馨提示×

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

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

Python傳遞列表的方法

發布時間:2020-08-06 11:08:54 來源:億速云 閱讀:201 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關Python傳遞列表的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

傳遞列表

def greet_users(names):
    for name in names:
        mag = "Hello, " + name.title() + "!"
        print(mag)
user_names = ['hannah', 'bob', 'margot']
greet_users(user_names)

運行結果:

Hello, Hannah!
Hello, Bob!
Hello, Margot!

1. 在函數中修改列表

# 創建一個列表,其中包含一些要打印的設計
unprinted_designs = ['iphone case', 'robot pendant', 'dodecahedron']
completed_models = []
# 模擬打印每個設計,直到沒有未打印的設計為止,打印后移至completed_models中
while unprinted_designs:
    current_design = unprinted_designs.pop()
    # 模擬根據設計制作打印模型的過程
    print("Printing model: " + current_design)
    completed_models.append(current_design)
# 顯示打印好的模型
print("\nThe following models have been printed:")
print(completed_models)

運行結果:

Printing model: dodecahedron
Printing model: robot pendant
Printing model: iphone case
The following models have been printed:
['dodecahedron', 'robot pendant', 'iphone case']

 用函數如何表達上述代碼的意思呢?

def print_models(unprinted_designs, completed_models):
    while unprinted_designs:
        current_design = unprinted_designs.pop()
        print("Printing model: " + current_design)
        completed_models.append(current_design)
def show_completed_models(completed_models):
    print("\nThe following models have been printed:")
    for completed_model in completed_models:
        print(completed_model)
unprinted_designs = ['iphone case', 'robot pendant', 'dodecahedron']
completed_models = []
print_models(unprinted_designs, completed_models)
show_completed_models(completed_models)

當print_models函數調用之后,列表completed_models已經不是最初定義的空,所有列表unprinted_designs中的元素已轉移至列表completed_models,接下來調用show_completed_models函數就將列表completed_models中的元素都打印出來。

2. 禁止函數修改列表

上述的例子中print_models函數調用之后,列表unprinted_designs中的元素均已移除,此時的列表為空。但若想保留列表中的元素呢?

print_models(unprinted_designs[:], completed_models)

用切片法 [ : ] 創建列表副本,函數調用時使用的是列表的副本,而不是列表本身,此時函數中對列表做的修改不會影響到列表unprinted_designs。

關于Python傳遞列表的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

武冈市| 绍兴县| 西峡县| 普兰县| 龙海市| 白山市| 新丰县| 定陶县| 无棣县| 闵行区| 澜沧| 鲁甸县| 敖汉旗| 日喀则市| 获嘉县| 姜堰市| 渭源县| 中牟县| 乡宁县| 仁寿县| 肇庆市| 清流县| 沐川县| 塔城市| 九台市| 广饶县| 时尚| 南岸区| 大新县| 宁明县| 永寿县| 廊坊市| 德化县| 康平县| 化德县| 库尔勒市| 南宁市| 普陀区| 铁岭市| 科技| 剑阁县|