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
2a033735
Kaydet (Commit)
2a033735
authored
Nis 05, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ceil and floor return ints in 3k.
üst
cd76c274
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
math.rst
Doc/library/math.rst
+6
-7
No files found.
Doc/library/math.rst
Dosyayı görüntüle @
2a033735
...
@@ -26,9 +26,9 @@ Number-theoretic and representation functions:
...
@@ -26,9 +26,9 @@ Number-theoretic and representation functions:
.. function:: ceil(x)
.. function:: ceil(x)
Return the ceiling of *x*
as a float, the smallest integer value greater than
Return the ceiling of *x*
, the smallest integer greater than or equal to *x*.
or equal to *x*. If *x* is not a float, delegates to ``x.__ceil__()``, which
If *x* is not a float, delegates to ``x.__ceil__()``, which should return an
should return an
:class:`Integral` value.
:class:`Integral` value.
.. function:: copysign(x, y)
.. function:: copysign(x, y)
...
@@ -44,9 +44,9 @@ Number-theoretic and representation functions:
...
@@ -44,9 +44,9 @@ Number-theoretic and representation functions:
.. function:: floor(x)
.. function:: floor(x)
Return the floor of *x*
as a float, the largest integer value less than or
Return the floor of *x*
, the largest integer less than or equal to *x*.
equal to *x*. If *x* is not a float, delegates to ``x.__floor__()``, which
If *x* is not a float, delegates to ``x.__floor__()``, which should return an
should return an
:class:`Integral` value.
:class:`Integral` value.
.. function:: fmod(x, y)
.. function:: fmod(x, y)
...
@@ -117,7 +117,6 @@ necessarily has no fractional bits.
...
@@ -117,7 +117,6 @@ necessarily has no fractional bits.
Power and logarithmic functions:
Power and logarithmic functions:
.. function:: exp(x)
.. function:: exp(x)
Return ``e**x``.
Return ``e**x``.
...
...
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