logo

Die Funktionen floor() und ceil() in Python

In diesem Tutorial lernen wir, wie man die Funktionen floor() und ceil() des Mathematikmoduls in Python verwendet.

Die Funktion floor():

Die Funktion „floor()“ wird verwendet, um die untere Ganzzahl von „X“ zu ermitteln, d.

Syntax:

 math.floor(X) 

Parameter:

Wir können den numerischen Ausdruck übergeben.

Kehrt zurück:

Es gibt den größten ganzzahligen Wert zurück, der nicht größer als „X“ ist.

Sehen wir uns ein Beispiel an, um eine Vorstellung von der Implementierung der Funktion floor() in Python zu bekommen.

Beispiel:

 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)) 

Ausgabe:

 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 

Die Funktion ceil():

Die Funktion ceil() des Mathematikmoduls in Python wird verwendet, um im Gegenzug den Höchstwert von „X“ zu erhalten, was den kleinsten ganzzahligen Wert bedeutet, der nicht kleiner als „X“ ist, im Grunde die nächste Rundungszahl von Es.

Syntax:

 math.ceil(X) 

Parameter:

Wir können den numerischen Ausdruck übergeben.

Kehrt zurück:

Es gibt den kleinsten ganzzahligen Wert zurück, der nicht kleiner als „X“ ist.

Sehen wir uns ein Beispiel an, um eine Vorstellung von der Implementierung der Funktion ceil() in Python zu bekommen.

Beispiel:

 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)) 

Ausgabe:

 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 

Abschluss

In diesem Tutorial haben wir besprochen, wie die Funktionen floor() und ceil() des Mathematikmoduls in Python implementiert werden.