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
5ce0aa23
Kaydet (Commit)
5ce0aa23
authored
Ara 01, 2010
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add recipe to itertools doc.
üst
c79fb0e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
itertools.rst
Doc/library/itertools.rst
+8
-0
No files found.
Doc/library/itertools.rst
Dosyayı görüntüle @
5ce0aa23
...
@@ -653,6 +653,14 @@ which incur interpreter overhead.
...
@@ -653,6 +653,14 @@ which incur interpreter overhead.
pending -= 1
pending -= 1
nexts = cycle(islice(nexts, pending))
nexts = cycle(islice(nexts, pending))
def accumulate(iterable):
'Emit a running total'
# accumulate([1,2,3,4,5]) --> 1 3 6 10 15
total = 0
for element in iterable:
total += element
yield total
def partition(pred, iterable):
def partition(pred, iterable):
'Use a predicate to partition entries into false entries and true entries'
'Use a predicate to partition entries into false entries and true entries'
# partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9
# partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9
...
...
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