當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Python Itertools.cycle()用法及代碼示例

迭代器定義為對象類型,其中包含可以使用循環訪問或迭代的值。 內置與Python一起提供了不同的迭代器,例如列表,集合等。Itertools是Python模塊,其中包含一些用於使用迭代器生成序列的內置函數。該模塊提供了在迭代器上工作以生成複雜迭代器的各種函數。該模塊可作為一種快速的內存有效工具,可單獨使用或組合使用以形成迭代器代數。

有不同類型的迭代器


    • 無限迭代器:
    這些類型的迭代器會產生無限序列。
    • 短序列迭代器:
    這些迭代器產生在某些迭代之後終止的序列。
    • 組合發電機的函數:
    這些生成器組合產生與輸入自變量相關的序列。

Itertools.cycle()

  • 函數僅接受一個參數作為輸入,可以像列表,字符串,元組等
  • 該函數返回迭代器對象類型
  • 在函數的實現中,返回類型為yield,它在不破壞局部變量的情況下掛起函數執行。由生成中間結果的生成器使用
  • 它遍曆輸入自變量中的每個元素並產生它並重複循環,並產生一個無窮大的自變量序列

下麵提到的Python程序說明了循環函數的函數。它以字符串類型作為參數並產生無限序列。

import itertools 
  
  
# String for sequence generation 
Inputstring ="Geeks"
  
# Calling the function Cycle from 
# itertools and passing string as  
#an argument and the function returns 
# the iterator object 
StringBuffer = itertools.cycle(Inputstring) 
SequenceRepeation = 0
SequenceStart = 0
SequenceEnd = len(Inputstring) 
  
for output in StringBuffer:
    if(SequenceStart == 0):
        print("Sequence % d"%(SequenceRepeation + 1)) 
  
    # Cycle function iterates through each 
    # element and produces the sequence  
    # and repeats it the sequence 
    print(output, end =" ") 
  
    # Checks the End of the Sequence according  
    # to the give input argument 
    if(SequenceStart == SequenceEnd-1):
          
        if(SequenceRepeation>= 2):
            break
        else:
            SequenceRepeation+= 1
            SequenceStart = 0
            print("\n") 
    else:
        SequenceStart+= 1

輸出:

Sequence  1
G e e k s 

Sequence  2
G e e k s 

Sequence  3
G e e k s

itertools.cycle函數還可以與Python列表一起使用。下麵提到的Python程序說明了該函數。它以Python列表作為參數並產生無限序列。

import itertools 
  
  
# List for sequence generation 
Inputlist = [1, 2, 3] 
  
# Calling the function Cycle from 
# itertools and passing list as  
# an argument and the function  
# returns the iterator object 
ListBuffer = itertools.cycle(Inputlist) 
SequenceRepeation = 0
SequenceStart = 0
SequenceEnd = len(Inputlist) 
  
for output in ListBuffer:
    if(SequenceStart == 0):
        print("Sequence % d"%(SequenceRepeation + 1)) 
  
    # Cycle function iterates through  
    # each element and produces the  
    # sequence and repeats it the sequence 
    print(output, end =" ") 
  
    # Checks the End of the Sequence according 
    # to the give input argument 
    if(SequenceStart == SequenceEnd-1):
          
        if(SequenceRepeation>= 2):
            break
        else:
            SequenceRepeation+= 1
            SequenceStart = 0
            print("\n") 
    else:
        SequenceStart+= 1

輸出:

Sequence  1
1 2 3 

Sequence  2
1 2 3 

Sequence  3
1 2 3 



注:本文由純淨天空篩選整理自Yelleti_Varshith大神的英文原創作品 Python – Itertools.cycle()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。