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
e3d5f981
Kaydet (Commit)
e3d5f981
authored
Ara 07, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Put str() in alphabetical order.
üst
a4ce2f51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
libfuncs.tex
Doc/lib/libfuncs.tex
+10
-10
No files found.
Doc/lib/libfuncs.tex
Dosyayı görüntüle @
e3d5f981
...
...
@@ -908,6 +908,16 @@ class C:
\versionadded
{
2.2
}
\end{funcdesc}
\begin{funcdesc}
{
str
}{
\optional
{
object
}}
Return a string containing a nicely printable representation of an
object. For strings, this returns the string itself. The
difference with
\code
{
repr(
\var
{
object
}
)
}
is that
\code
{
str(
\var
{
object
}
)
}
does not always attempt to return a string
that is acceptable to
\function
{
eval()
}
; its goal is to return a
printable string. If no argument is given, returns the empty
string,
\code
{
''
}
.
\end{funcdesc}
\begin{funcdesc}
{
sum
}{
sequence
\optional
{
, start
}}
Sums
\var
{
start
}
and the items of a
\var
{
sequence
}
, from left to
right, and returns the total.
\var
{
start
}
defaults to
\code
{
0
}
.
...
...
@@ -936,16 +946,6 @@ class C(B):
\versionadded
{
2.2
}
\end{funcdesc}
\begin{funcdesc}
{
str
}{
\optional
{
object
}}
Return a string containing a nicely printable representation of an
object. For strings, this returns the string itself. The
difference with
\code
{
repr(
\var
{
object
}
)
}
is that
\code
{
str(
\var
{
object
}
)
}
does not always attempt to return a string
that is acceptable to
\function
{
eval()
}
; its goal is to return a
printable string. If no argument is given, returns the empty
string,
\code
{
''
}
.
\end{funcdesc}
\begin{funcdesc}
{
tuple
}{
\optional
{
sequence
}}
Return a tuple whose items are the same and in the same order as
\var
{
sequence
}
's items.
\var
{
sequence
}
may be a sequence, a
...
...
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