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

2021-10-04 21:40:40 字數 597 閱讀 6472

在你為完成練習「魔術師」而編寫的程式中,編寫乙個名為make_ great()的函式,對魔術師列表進行修改,在每個魔術師的名字中都加入字樣「thegreat」。呼叫函式show_magicians(), 確認魔術師列表確實變了。

# 了不起的魔術師

defmake_great

(names)

: names =

["the great "

+ name for name in names]

return names

defshow_magicians

(names)

:for name in names:

print

(name)

names =

['ling'

,'hui'

,'he'

]names = make_great(names)

show_magicians(names)

輸出為:

the great ling

the great hui

the great he

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...