Python入門習題大全 不變的魔術師

2021-10-04 21:40:40 字數 734 閱讀 3534

修改你為完成練習「了不起的魔術師」而編寫的程式,在呼叫函式make_great()時,向它傳遞魔術師列表的副本。由於不想修改原始列表,請返回修改後的列表,並將其儲存到另乙個列表中。分別使用這兩個列表來呼叫show_ magicians(),確認乙個列表包含的是原來的魔術師名字,而另乙個列表包含的是新增了字樣「thegreat」的魔術師名字。

# 不變的的魔術師

defmake_great

(names, names2)

:while names:

name =

"the great "

+ names.pop(

)def

show_magicians

(names)

:for name in names:

print

(name)

names =

['ling'

,'hui'

,'he'

]names2 =

make_great(names[:]

, names2)

show_magicians(names2)

show_magicians(names)

輸出為:

the great he

the great hui

the great ling

ling

huihe

Python入門習題大全 比薩

想出至少三種你喜歡的比薩,將其名稱儲存在乙個列表中,再使用 for 迴圈將每種比薩的名稱都列印出來。1.修改這個 for 迴圈,使其列印包含比薩名稱的句子,而不僅僅是比薩的名稱。對於每種比薩,都顯示一行輸出,如 i like pepperoni pizza 2.在程式末尾新增一行 它不在 for 迴...

Python入門習題大全 切片

隨意建立乙個列表,在末尾新增幾行 以完成如下任務。列印訊息 the first three items in the list ate 再使用切片來列印列表的前三個元素。列印訊息 three items from the middle of the list ate 再使用切片來列印列中間的三個元素...

Python入門習題大全 序數

序數表示位置,如 1st 和 2nd。大多數序數都以 th 結尾,只有 1 2 和 3 例外。在乙個列表中儲存數字 1 9。遍歷這個列表。在迴圈中使用乙個 if elif else 結構,以列印每個數字對應的序數。輸出內容應為 1st 2nd 3rd 4th 5th 6th 7th 8th 和 9t...