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
2246aa8a
Kaydet (Commit)
2246aa8a
authored
Eyl 28, 2012
tarafından
Chris Jerdonek
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #16036: Merge update from 3.2.
üst
43f8f4cf
57491e07
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
8 deletions
+16
-8
functions.rst
Doc/library/functions.rst
+13
-8
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/functions.rst
Dosyayı görüntüle @
2246aa8a
...
@@ -629,14 +629,19 @@ are always available. They are listed here in alphabetical order.
...
@@ -629,14 +629,19 @@ are always available. They are listed here in alphabetical order.
to provide elaborate line editing and history features.
to provide elaborate line editing and history features.
.. function:: int([number | string[, base]])
.. function:: int(x=0)
int(x, base=10)
Convert a number or string to an integer. If no arguments are given, return
``0``. If a number is given, return ``number.__int__()``. Conversion of
Convert a number or string *x* to an integer, or return ``0`` if no
floating point numbers to integers truncates towards zero. A string must be
arguments are given. If *x* is a number, return :meth:`x.__int__()
a base-radix integer literal optionally preceded by '+' or '-' (with no space
<object.__int__>`. For floating point numbers, this truncates towards zero.
in between) and optionally surrounded by whitespace. A base-n literal
consists of the digits 0 to n-1, with 'a' to 'z' (or 'A' to 'Z') having
If *x* is not a number or if *base* is given, then *x* must be a string,
:class:`bytes`, or :class:`bytearray` instance representing an :ref:`integer
literal <integers>` in radix *base*. Optionally, the literal can be
preceded by ``+`` or ``-`` (with no space in between) and surrounded by
whitespace. A base-n literal consists of the digits 0 to n-1, with ``a``
to ``z`` (or ``A`` to ``Z``) having
values 10 to 35. The default *base* is 10. The allowed values are 0 and 2-36.
values 10 to 35. The default *base* is 10. The allowed values are 0 and 2-36.
Base-2, -8, and -16 literals can be optionally prefixed with ``0b``/``0B``,
Base-2, -8, and -16 literals can be optionally prefixed with ``0b``/``0B``,
``0o``/``0O``, or ``0x``/``0X``, as with integer literals in code. Base 0
``0o``/``0O``, or ``0x``/``0X``, as with integer literals in code. Base 0
...
...
Misc/NEWS
Dosyayı görüntüle @
2246aa8a
...
@@ -106,6 +106,9 @@ Build
...
@@ -106,6 +106,9 @@ Build
Documentation
Documentation
-------------
-------------
- Issue #16036: Improve documentation of built-in int()'
s
signature
and
arguments
.
-
Issue
#
15935
:
Clarification
of
argparse
docs
,
re
:
add_argument
()
type
and
-
Issue
#
15935
:
Clarification
of
argparse
docs
,
re
:
add_argument
()
type
and
default
arguments
.
Patch
contributed
by
Chris
Jerdonek
.
default
arguments
.
Patch
contributed
by
Chris
Jerdonek
.
...
...
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