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
275935db
Kaydet (Commit)
275935db
authored
Mar 28, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
document sys.maxint in std objects
üst
7fd548f9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
libstdtypes.tex
Doc/lib/libstdtypes.tex
+6
-4
No files found.
Doc/lib/libstdtypes.tex
Dosyayı görüntüle @
275935db
...
...
@@ -185,10 +185,12 @@ There are four distinct numeric types: \dfn{plain integers},
In addition, Booleans are a subtype of plain integers.
Plain integers (also just called
\dfn
{
integers
}
)
are implemented using
\ctype
{
long
}
in C, which gives them at least 32
bits of precision. Long integers have unlimited precision. Floating
point numbers are implemented using
\ctype
{
double
}
in C. All bets on
their precision are off unless you happen to know the machine you are
working with.
bits of precision (
\code
{
sys.maxint
}
is always set to the maximum
plain integer value for the current platform, the minimum value is
\code
{
-sys.maxint - 1
}
). Long integers have unlimited precision.
Floating point numbers are implemented using
\ctype
{
double
}
in C.
All bets on their precision are off unless you happen to know the
machine you are working with.
\obindex
{
numeric
}
\obindex
{
Boolean
}
\obindex
{
integer
}
...
...
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