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
e4186252
Kaydet (Commit)
e4186252
authored
Eyl 24, 2007
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#1196: document default radix for int().
üst
97ca5837
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
functions.rst
Doc/library/functions.rst
+12
-11
No files found.
Doc/library/functions.rst
Dosyayı görüntüle @
e4186252
...
...
@@ -545,17 +545,18 @@ available. They are listed here in alphabetical order.
..
function
::
int
([
x
[,
radix
]])
Convert
a
string
or
number
to
a
plain
integer
.
If
the
argument
is
a
string
,
it
must
contain
a
possibly
signed
decimal
number
representable
as
a
Python
integer
,
possibly
embedded
in
whitespace
.
The
*
radix
*
parameter
gives
the
base
for
the
conversion
and
may
be
any
integer
in
the
range
[
2
,
36
],
or
zero
.
If
*
radix
*
is
zero
,
the
proper
radix
is
guessed
based
on
the
contents
of
string
;
the
interpretation
is
the
same
as
for
integer
literals
.
If
*
radix
*
is
specified
and
*
x
*
is
not
a
string
,
:
exc
:`
TypeError
`
is
raised
.
Otherwise
,
the
argument
may
be
a
plain
or
long
integer
or
a
floating
point
number
.
Conversion
of
floating
point
numbers
to
integers
truncates
(
towards
zero
).
If
the
argument
is
outside
the
integer
range
a
long
object
will
be
returned
instead
.
If
no
arguments
are
given
,
returns
``
0
``.
Convert
a
string
or
number
to
a
plain
integer
.
If
the
argument
is
a
string
,
it
must
contain
a
possibly
signed
decimal
number
representable
as
a
Python
integer
,
possibly
embedded
in
whitespace
.
The
*
radix
*
parameter
gives
the
base
for
the
conversion
(
which
is
10
by
default
)
and
may
be
any
integer
in
the
range
[
2
,
36
],
or
zero
.
If
*
radix
*
is
zero
,
the
proper
radix
is
guessed
based
on
the
contents
of
string
;
the
interpretation
is
the
same
as
for
integer
literals
.
If
*
radix
*
is
specified
and
*
x
*
is
not
a
string
,
:
exc
:`
TypeError
`
is
raised
.
Otherwise
,
the
argument
may
be
a
plain
or
long
integer
or
a
floating
point
number
.
Conversion
of
floating
point
numbers
to
integers
truncates
(
towards
zero
).
If
the
argument
is
outside
the
integer
range
a
long
object
will
be
returned
instead
.
If
no
arguments
are
given
,
returns
``
0
``.
The
integer
type
is
described
in
:
ref
:`
typesnumeric
`.
...
...
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