想出至少三種你喜歡的比薩,將其名稱儲存在乙個列表中,再使用 for迴圈將每種比薩的名稱都列印出來。
>>
> study =
['english'
,'chinese'
,'math'
,'physics'
,'pe'
,'history'
]>>
>
for n in study:
print
(n)
english
chinese
math
physics
pehistory
修改這個 for 迴圈,使其列印包含比薩名稱的句子,而不僅僅是比薩的名稱。對於每種比薩,都顯示一行輸出,如「i like pepperoni pizza」。
>>
>
for n in study:
print
('i like study'
,n+'.')
i like study english.
i like study chinese.
i like study math.
i like study physics.
i like study pe.
i like study history.
>>
>
在程式末尾新增一行**,它不在 for 迴圈中,指出你有多喜歡比薩。輸出應包含針對每種比薩的訊息,還有乙個總結性句子,如「i really love pizza!」。
study =
['english'
,'chinese'
,'math'
,'physics'
,'pe'
,'history'
]for n in study:
print
('i like study'
,n+'.'
)print()
print
('i like to learn kinds of knowledge.'
)i like study english.
i like study chinese.
i like study math.
i like study physics.
i like study pe.
i like study history.
i like to learn kinds of knowledge.
動物:想出至少三種有共同特徵的動物,將這些動物的名稱儲存在乙個列表中,再使用 for 迴圈將每種動物的名稱都列印出來。
animals=
['tiger'
,'cat'
,'dog'
,'pig'
,'horse'
,'lion'
]for animal in animals:
print
(animal)
tiger
catdog
pighorse
lion
修改這個程式,使其針對每種動物都列印乙個句子,如「a dog would make a great pet」。
animals=
['tiger'
,'cat'
,'dog'
,'pig'
,'horse'
,'lion'
]for animal in animals:
print
(animal.title(),
'is a animals.')
tiger is a animals.
cat is a animals.
dog is a animals.
pig is a animals.
horse is a animals.
lion is a animals.
>>
>
在程式末尾新增一行**,指出這些動物的共同之處,如列印諸如「any of these animals would make a great pet!」這樣的句子。
animals=
['tiger'
,'cat'
,'dog'
,'pig'
,'horse'
,'lion'
]for animal in animals:
print
(animal.title(),
'is a animals.'
)print()
print
('some animals are fierce and some are lovely.'
)tiger is a animals.
cat is a animals.
dog is a animals.
pig is a animals.
horse is a animals.
lion is a animals.
some animals are fierce and some are lovely.
>>
>
自學Python從入門到放棄,10
for value in range 1 7 print value 12 3456 使用list 函式將range 的結果直接轉換為列表 numbers list range 1 6 print numbers 1 2,3 4,5 squares 54 987 3345 for value in ...
python 從入門到放棄
本人所有關於python的內容均為學習期間的整理的筆記,希望可以給學習者帶來些許幫助!不過一入it深似海!準備入行者請做好充分的心理準備!計算機的知識跟新迭代速度很快,不學習就會被淘汰!如果你打算入行然後找乙份安穩的工作安度餘生,那麼我還是建議去考公務員吧!這個行業可能並不適合你!有不少的人可能都覺...
2020 Python從入門到不放棄自學筆記3
迴圈結構練習 原題為判斷乙個輸入的數值是不是質數 我把這個題目加以改造,迴圈生成所有質數 使用了 while for迴圈結構 x 2 定義初始值 prime 定義乙個空列表 while x 0 無限迴圈,此處也可以用while true y 0 定義初始可整除次數 for i in range 2 ...