4.1 Python -- 遍歷整個列表
4.1.1 for 迴圈
使用 for 迴圈來列印列表中的所有元素。
#程式碼:
names = ['張三','李四','王五']
for name in names:
print(name)
#執行結果:
張三
李四
王五
4.1.2 for 迴圈中執行更多操作
使用 for 迴圈來列印列表中的所有元素,並祝福每位客人新年快樂。
#程式碼:
names = ['張三','李四','王五']
for name in names:
print("{}{}".format(name,',新年快樂\n'))
#執行結果:
張三,新年快樂
李四,新年快樂
王五,新年快樂
4.1.3 for 迴圈結束後執行一些操作
在 for 迴圈結束後祝大家新年快樂
#程式碼:
names = ['張三','李四','王五']
for name in names:
print("{}{}".format(name,',新年快樂\n'))
print('I wish you all happy new year')
#執行結果:
張三,新年快樂
李四,新年快樂
王五,新年快樂
I wish you all happy new year
4.1.4 練習
1、相出三種有共同特徵的動物,將其名稱儲存在一個列表中,再使用 for 迴圈將每動物的名稱列印出來。
- 修改這個程式,使其針對每種動物都列印一個句子。
- 再程式的末尾新增一行程式碼,指出這些動物的共同之處。
#程式碼:
animals = ['dog','cat','pig']
for animal in animals:
print(f"A {animal} would make a great pet.")
#format 列印
# print("{}{}{}".format('A ',animal,'would make a great pet.'))
print('Any of these animals would make a great pet!')
#執行結果:
A dog would make a great pet.
A cat would make a great pet.
A pig would make a great pet.
Any of these animals would make a great pet!
相關文章
- python 元組,列表 迴圈遍歷Python
- Python基礎-列表操作(2):列表的遍歷和數字列表Python
- Python字典的遍歷,包括key遍歷/value遍歷/item遍歷/Python
- Python中列表遍歷使用range和enumerate的區別Python
- 【編測編學】零基礎學python_09_列表(操作列表之遍歷列表)Python
- list列表運算子,列表元素的遍歷,列表的方法,生成列表,巢狀的列表|python自學筆記(四)巢狀Python筆記
- Python新手常見問題五:在遍歷列表的同時又修改該列表Python
- 『無為則無心』Python序列 — 19、Python列表的其他操作(切片和遍歷)Python
- python---字典遍歷Python
- python字串遍歷方式Python字串
- Python字典遍歷的陷阱Python
- 【編測編學】零基礎學python_11_列表(切片+遍歷切片+複製)Python
- python遍歷之批次更改檔名Python
- python字典的四種遍歷方式Python
- Python中的字典遍歷有序嗎?Python
- golang for range 遍歷 對比 PHP、pythonGolangPHPPython
- js的map遍歷和array遍歷JS
- python for迴圈遍歷位置的查詢Python
- 說說在 Python 中如何遍歷字典Python
- 遍歷 FlowDocument
- jQuery 遍歷jQuery
- Linuxshell遍歷Linux
- JavaScript遍歷陣列每一個元素JavaScript陣列
- [work] python巢狀字典的遞迴遍歷Python巢狀遞迴
- 如何遍歷 HashMap,遍歷HashMap 的 5 種最佳方式HashMap
- jQuery的遍歷結構設計之遍歷同胞jQuery
- jQuery的遍歷結構設計之遍歷祖先jQuery
- 求遍歷網頁每一個節點的框架,最好是 python 寫的網頁框架Python
- Python優雅遍歷字典刪除元素的方法Python
- Python遍歷資料夾常用的兩種方法!Python
- python對常見資料型別的遍歷Python資料型別
- TDictionary 的 遍歷
- jQuery 遍歷 – 祖先jQuery
- jQuery 遍歷方法jQuery
- 集合迭代/遍歷
- 資料遍歷
- jstl forEach遍歷JS
- 陣列遍歷陣列