了解空產生器的狀態
預先了解產生器是否為空可以大幅簡化某些程式碼路徑。不幸的是,生成器沒有提供像 peek、hasNext 或 isEmpty 這樣的簡單方法來確定這一點。
建議:
要解決此問題,您可以建立peek 函數手動執行此操作。
<code class="python">def peek(iterable): try: first = next(iterable) except StopIteration: return None return first, itertools.chain([first], iterable)</code>
用法:
一旦有了peek 函數,您就可以像這樣使用它:
<code class="python">res = peek(mysequence) if res is None: # sequence is empty. Do stuff. else: first, mysequence = res # Do something with first, maybe? # Then iterate over the sequence: for element in mysequence: # etc.</code>
這種方法可以像這樣使用它:
這種方法可以像這樣使用它: 這種方法可以像這樣使用它: 這個方法可以讓您有效地處理空生成器,而無需遍歷整個序列。以上是如何在Python中確定空生成器的狀態?的詳細內容。更多資訊請關注PHP中文網其他相關文章!