Files
org-roamings/20220206220528-arrondir_les_flottants_en_python.org

27 lines
545 B
Org Mode

:PROPERTIES:
:ID: f7c05933-90e6-4a9c-acd5-1f0baf62f07f
:mtime: 20220207072847
:ctime: 20220206220528
:END:
#+title: Arrondir les flottants en python
#+filetags: :Python:
* Arrondir un nombre à l'entier inférieur
#+BEGIN_SRC python :results output
print(22 // 5)
#+END_SRC
#+RESULTS:
: 4
* Arrondir un noombre à l'entier supérieur
#+BEGIN_SRC python :results output
print(22 // -5 * -1)
#+END_SRC
#+RESULTS:
: 5
* Références
* [[https://www.delftstack.com/fr/howto/python/python-round-up/][Arrondir un nombre en Python]]