九:列表循环
python
复制代码
list_one = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
for item in list_one:
print(item)
# 获取列表长度
print(len(list_one))
i = 0
# 通过数组长度遍历数组
while(i < len(list_one) ):
print(list_one[i])
i += 1
十:列表的切片操作
划重点,列表的切片操作很重要
使用切片操作,切片之后,将产生一个新的列表对象
scss
复制代码
list_one =