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
734fb572
Kaydet (Commit)
734fb572
authored
Ock 20, 2004
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add a Guido inspired example for groupby().
üst
57cb68fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
1 deletion
+28
-1
libitertools.tex
Doc/lib/libitertools.tex
+14
-1
test_itertools.py
Lib/test/test_itertools.py
+14
-0
No files found.
Doc/lib/libitertools.tex
Dosyayı görüntüle @
734fb572
...
...
@@ -406,12 +406,25 @@ Samuele
2
[
'b', 'd', 'f'
]
3
[
'g'
]
# Find runs of consecutive numbers using groupby. The key to the solution
# is differencing with a range so that consecutive numbers all appear in
# same group.
>>> data
=
[
1
,
4
,
5
,
6
,
10
,
15
,
16
,
17
,
18
,
22
,
25
,
26
,
27
,
28
]
>>> for k, g in groupby
(
enumerate
(
data
)
, lambda
(
i,x
)
:i
-
x
)
:
... print map
(
operator.itemgetter
(
1
)
, g
)
...
[
1
]
[
4
,
5
,
6
]
[
10
]
[
15
,
16
,
17
,
18
]
[
22
]
[
25
,
26
,
27
,
28
]
\end
{
verbatim
}
This section shows how itertools can be combined to create other more
powerful itertools. Note that
\function
{
enumerate
()
}
and
\method
{
iteritems
()
}
already have efficient implementations
in Python. They are only
included here
already have efficient implementations
. They are
included here
to illustrate how higher level tools can be created from building blocks.
\begin
{
verbatim
}
...
...
Lib/test/test_itertools.py
Dosyayı görüntüle @
734fb572
...
...
@@ -677,6 +677,20 @@ Samuele
2 ['b', 'd', 'f']
3 ['g']
# Find runs of consecutive numbers using groupby. The key to the solution
# is differencing with a range so that consecutive numbers all appear in
# same group.
>>> data = [ 1, 4,5,6, 10, 15,16,17,18, 22, 25,26,27,28]
>>> for k, g in groupby(enumerate(data), lambda (i,x):i-x):
... print map(operator.itemgetter(1), g)
...
[1]
[4, 5, 6]
[10]
[15, 16, 17, 18]
[22]
[25, 26, 27, 28]
>>> def take(n, seq):
... return list(islice(seq, n))
...
...
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