您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關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傳遞列表的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。