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
00bb3295
Kaydet (Commit)
00bb3295
authored
Eyl 06, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Document the built-in iter() function.
üst
7feae2d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
libfuncs.tex
Doc/lib/libfuncs.tex
+17
-0
No files found.
Doc/lib/libfuncs.tex
Dosyayı görüntüle @
00bb3295
...
...
@@ -390,6 +390,23 @@ argument is not a class object, a \exception{TypeError} exception is
raised.
\end{funcdesc}
\begin{funcdesc}
{
iter
}{
o
\optional
{
, sentinel
}}
Return an iterator object. The first argument is interpreted very
differently depending on the presence of the second argument.
Without a second argument,
\var
{
o
}
must be a collection object which
supports the iteration protocol (the
\method
{__
iter
__
()
}
method), or
it must support the sequence protocol (the
\method
{__
getitem
__
()
}
method with integer arguments starting at
\code
{
0
}
). If it does not
support either of those protocols,
\exception
{
TypeError
}
is raised.
If the second argument,
\var
{
sentinel
}
, is given, then
\var
{
o
}
must
be a callable object. The iterator created in this case will call
\var
{
o
}
with no arguments for each call to its
\method
{
next()
}
method; if the value returned is equal to
\var
{
sentinel
}
,
\exception
{
StopIteration
}
will be raised, otherwise the value will
be returned.
\versionadded
{
2.2
}
\end{funcdesc}
\begin{funcdesc}
{
len
}{
s
}
Return the length (the number of items) of an object. The argument
may be a sequence (string, tuple or list) or a mapping (dictionary).
...
...
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