用法:
itertools.count(start=0, step=1)
創建一個迭代器,它返回以數字
start
開頭的均勻間隔的值。通常用作map()
的參數以生成連續數據點。此外,與zip()
一起使用以添加序列號。大致相當於:def count(start=0, step=1): # count(10) --> 10 11 12 13 14 ... # count(2.5, 0.5) -> 2.5 3.0 3.5 ... n = start while True: yield n n += step
使用浮點數進行計數時,有時可以通過替換乘法代碼來獲得更高的準確性,例如:
(start + step * i for i in count())
。在 3.1 版中更改:添加
step
參數和允許的非整數參數。
相關用法
- Python itertools.compress用法及代碼示例
- Python itertools.combinations_with_replacement用法及代碼示例
- Python itertools.combinations用法及代碼示例
- Python itertools.chain.from_iterable用法及代碼示例
- Python itertools.chain用法及代碼示例
- Python itertools.cycle用法及代碼示例
- Python itertools.takewhile用法及代碼示例
- Python itertools.dropwhile用法及代碼示例
- Python itertools.repeat用法及代碼示例
- Python itertools.groupby()用法及代碼示例
- Python itertools.repeat()用法及代碼示例
- Python itertools.starmap用法及代碼示例
- Python itertools.filterfalse用法及代碼示例
- Python itertools.groupby用法及代碼示例
- Python itertools.zip_longest用法及代碼示例
- Python itertools.accumulate用法及代碼示例
- Python itertools.tee用法及代碼示例
- Python itertools.permutations用法及代碼示例
- Python itertools.product用法及代碼示例
- Python itertools.islice用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 itertools.count。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。