一. 迭代
1. 迭代协议
- next()
f=open('data.txt',encoding='utf-8')
f.__next__()
'学编程 好心情'
2.迭代工具 for…推导…map
- 迭代器对象
(1)已经实现 - 可迭代对象
(1)iter() ->iter()用于生成迭代器
f=open('data.txt',encoding='utf-8')
iter(f) is f
True
next(f)
'youpin\n'
urls=['youpinketang.com','uke.cc','codeclassroom.com']
iter(urls) is urls
False
i=iter(urls)
i.__next__()
'youpinketang.com'
有些自己能迭代,有些不能
推导表达式
l=[1,2,3,4,5]
res1=[x for x in l]
type(res1)
<class 'list'>
res1
[1, 2, 3, 4, 5]
res2=[x+10 for x in l]
res2
[11, 12, 13, 14, 15]
urls
['youpinketang.com&#