logo

Les funcions floor() i ceil() a Python

En aquest tutorial, aprendrem a utilitzar les funcions floor() i ceil() del mòdul de matemàtiques a Python.

The floor() Funció:

La funció floor() s'utilitza per obtenir l'enter pis de 'X', que significa el valor enter més gran, que no és més gran que 'X', bàsicament el nombre arrodonit per baix més proper.

Sintaxi:

 math.floor(X) 

Paràmetre:

Podem passar l'expressió numèrica.

Devolucions:

Retorna el valor enter més gran que no sigui més gran que 'X'.

Vegem un exemple per fer-nos una idea d'implementar la funció floor() a Python.

Exemple:

 import math as M # printing the floor value by using floor() function of math module print ('The floor value of math.floor(-54.21) is: ', M.floor(-54.21)) print ('The floor value of math.floor(432.56) is: ', M.floor(432.56)) print ('The floor value of math.floor(320.62) is: ', M.floor(320.62)) 

Sortida:

 The floor value of math.floor(-54.21) is: -55 The floor value of math.floor(432.56) is: 432 The floor value of math.floor(320.62) is: 320 

La funció ceil():

La funció ceil() del mòdul matemàtic de Python s'utilitza per obtenir el valor sostre de 'X' a canvi, que significa el valor enter més petit, que no és inferior a 'X', bàsicament, el nombre arrodonit més proper de això.

Sintaxi:

 math.ceil(X) 

Paràmetre:

Podem passar l'expressió numèrica.

Devolucions:

Retorna el valor enter més petit que no sigui inferior a 'X'.

Vegem un exemple per fer-nos una idea d'implementar la funció ceil() a Python.

Exemple:

 import math as M # printing the ceiling value by using ceil() function of math module print ('The ceiling value of math.ceil(-54.21) is: ', M.ceil(-54.21)) print ('The ceiling value of math.ceil(432.56) is: ', M.ceil(432.56)) print ('The ceiling value of math.ceil(320.62) is: ', M.ceil(320.62)) 

Sortida:

 The ceiling value of math.ceil(-54.21) is: -54 The ceiling value of math.ceil(432.56) is: 433 The ceiling value of math.ceil(320.62) is: 321 

Conclusió

En aquest tutorial, hem comentat com implementar les funcions floor() i ceil() del mòdul matemàtic a Python.