# Iterator 一個對象,代表了遺傳數據流,使用__next__()方法或內置函數next()
# 返回連續的對象,沒有數據返回時,拋出StopIteration異常
# iterable 一個對象,能每次返回數據組中的一個成員 for 循環中每次返回一個值 或
# 內置函數iter()傳入參數返回iterator對象
# generator 使用了yield或者生成器表達式,申城iterator對象 用一種方便的
# 方法實現了iterator,在for循環取數據或使用next()取數據
# Iterator和Generator的關系
# 針對函數的列表進行優化
# 針對讀取大文件進行優化
def gen_num():
yield 8
yield 99
yield 999
g = gen_num()
g
<generator object gen_num at 0x0000014F3F39EC50>
next(g) # 第一次運行
---------------------------------------------------------------------------
StopIteration Traceback (most recent call last)
<ipython-input-12-787e36cb69a2> in <module>()
----> 1 next(g) # 第一次運行
StopIteration:
def gen_num2():
for i in range(8):
yield i # yield有類似返回值return的效果
for g in gen_num2():
print(g) # 每次取一個值的時候,才生成這個值,節省內存
0
1
2
3
4
5
6
7
my_list = [1,2,3]
next(my_list) # 用 next方法驗證是否為迭代器
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-17-4a97765cd86f> in <module>()
----> 1 next(my_list)
TypeError: 'list' object is not an iterator
next(iter(my_list))
1
next(iter(my_list))
1
it = iter(my_list)
next(it)
1
next(it)
2
from collections import Iterator, Iterable
isinstance(my_list, Iterator)
False
isinstance(iter(my_list), Iterator)
True
isinstance((), Iterator)
False
isinstance((), Iterable) # 元組不是迭代器,但是可迭代
True
isinstance(range(8), Iterable)
True
isinstance(range(8), Iterator)
False
# Python 3:Fibonacci series up to n
def fib(n):
a, b = 0, 1
while a < n:
print(a, end='')
a, b = b, a+b
print()
fib(9)
0
1
1
2
3
5
8
def fil_list(n):
a, b = 0, 1
result = []
while a < n:
result.append(a)
a, b = b, a+b
return result
fil_list(55)
[0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
fil_list(1000)
[0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987]
def fib_gen(n):
a, b = 0, 1
while a< n:
yield a
a, b = b, a+b
fib_gen(80)
<generator object fib_gen at 0x0000014F3EA593B8>
for i in fib_gen(80):
print(i)
0
1
1
2
3
5
8
13
21
34
55
[i for i in fib_gen(66)] # 列表推導式
[0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55]
import os
base_dir = r'D:\全棧\全棧資料\第三階段 python進階\文件與日志-演示代碼\02-auto\data'
log_path = os.path.join(base_dir, 'access.log')
log_file = open(log_path)
log_data = log_file.readlines()
log_file.close()
len(log_data)
864
def read_log(log_path):
with open(log_path) as f:
print('Iterator:', isinstance(f, Iterator)) # open方法已經為我們生成一個迭代器
for line in f:
print(line)
break
read_log(log_path)
Iterator: True
220.181.7.76 - - [20/May/2010:07:26:23 +0100] "GET / HTTP/1.1" 200 29460 "-" "Baiduspider+(+http://www.baidu.com/search/spider.htm)"
[i for i in fib_gen(6)]
[0, 1, 1, 2, 3, 5]
m = [i for i in fib_gen(6)]
for i in m:
print(i)
0
1
1
2
3
5
(i for i in fib_gen(5))
<generator object <genexpr> at 0x0000014F3EAC9C50>
n = (i for i in fib_gen(9))
for i in n:
print(i)
0
1
1
2
3
5
8
另外有需要云服務器可以了解下創新互聯scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
名稱欄目:IteratorandGenerator-創新互聯
網站網址:http://vcdvsql.cn/article40/pgheo.html
成都網站建設公司_創新互聯,為您提供網站維護、標簽優化、品牌網站建設、定制網站、商城網站、App開發
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯