## 四.列表的循环遍历
---
需求:依次打印列表中的各个数据
### 4.1 while
---
- 代码
```python
name_list = ['Tom','Lily','Rose']
"""
1.准备表示下标数据
2.循环whihle
条件 i < 3 len()
遍历:依次按顺序访问到序列的每一个数据
i += 1
"""
i = 0
while i < len(name_list):
print(name_list[i])
i += 1
```
### 4.2 for
- 代码
```python
name_list = ['Tom','Lily','Rose']
for i in name_list:
# 遍历序列中的数据
print(i)
```