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

溫馨提示×

溫馨提示×

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

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

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

吉安市| 广元市| 崇仁县| 贺兰县| 那曲县| 伊宁市| 平阳县| 瑞安市| 定南县| 兴隆县| 泾阳县| 平潭县| 桃园县| 绥江县| 鲜城| 隆化县| 台北市| 邵东县| 武清区| 合江县| 景谷| 达拉特旗| 江油市| 彭水| 库伦旗| 盘锦市| 辽阳市| 宁津县| 姜堰市| 安化县| 青阳县| 额尔古纳市| 阿拉善左旗| 宝鸡市| 汕尾市| 渭南市| 东阿县| 神木县| 乐安县| 顺义区| 博野县|