Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
187aa269
Kaydet (Commit)
187aa269
authored
Eki 30, 2011
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improve itertools docs with clearer examples of pure python equivalent code.
üst
e11a47e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
9 deletions
+16
-9
itertools.rst
Doc/library/itertools.rst
+16
-9
No files found.
Doc/library/itertools.rst
Dosyayı görüntüle @
187aa269
...
...
@@ -433,9 +433,9 @@ loops that truncate the stream.
def izip(*iterables):
# izip('ABCD', 'xy') --> Ax By
itera
ble
s = map(iter, iterables)
while itera
ble
s:
yield tuple(map(next, itera
ble
s))
itera
tor
s = map(iter, iterables)
while itera
tor
s:
yield tuple(map(next, itera
tor
s))
.. versionchanged:: 2.4
When no iterables are specified, returns a zero length iterator instead of
...
...
@@ -456,17 +456,24 @@ loops that truncate the stream.
iterables are of uneven length, missing values are filled-in with *fillvalue*.
Iteration continues until the longest iterable is exhausted. Equivalent to::
class ZipExhausted(Exception):
pass
def izip_longest(*args, **kwds):
# izip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-
fillvalue = kwds.get('fillvalue')
def sentinel(counter = ([fillvalue]*(len(args)-1)).pop):
yield counter() # yields the fillvalue, or raises IndexError
counter = [len(args) - 1]
def sentinel():
if not counter[0]:
raise ZipExhausted
counter[0] -= 1
yield fillvalue
fillers = repeat(fillvalue)
iters = [chain(it, sentinel(), fillers) for it in args]
iter
ator
s = [chain(it, sentinel(), fillers) for it in args]
try:
for tup in izip(*iters)
:
yield tup
except
IndexError
:
while iterators
:
yield tup
le(map(next, iterators))
except
ZipExhausted
:
pass
If one of the iterables is potentially infinite, then the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment