logo

פונקציות floor() ו-ceil() ב-Python

במדריך זה, נלמד כיצד להשתמש בפונקציות floor() ו-ceil() של מודול המתמטיקה ב-Python.

הפונקציה floor():

הפונקציה floor() משמשת לקבלת המספר השלם של הרצפה של 'X', כלומר הערך השלם הגדול ביותר, שאינו גדול מ-'X', בעצם המספר הקרוב ביותר שלו.

תחביר:

 math.floor(X) 

פָּרָמֶטֶר:

אנחנו יכולים להעביר את הביטוי המספרי.

החזרות:

הוא מחזיר את הערך השלם הגדול ביותר שאינו גדול מ-'X'.

בוא נראה דוגמה כדי לקבל מושג על יישום הפונקציה floor() ב-Python.

דוגמא:

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

תְפוּקָה:

 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 

הפונקציה ceil():

הפונקציה ceil() של מודול המתמטיקה ב-Python משמשת לקבלת ערך התקרה של 'X' בתמורה, כלומר הערך השלם הקטן ביותר, שאינו קטן מ-'X', בעצם, מספר העיגול הקרוב ביותר של זה.

תחביר:

 math.ceil(X) 

פָּרָמֶטֶר:

אנחנו יכולים להעביר את הביטוי המספרי.

החזרות:

הוא מחזיר את הערך השלם הקטן ביותר שאינו קטן מ-'X'.

בוא נראה דוגמה כדי לקבל מושג על יישום הפונקציה ceil() ב- Python.

דוגמא:

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

תְפוּקָה:

 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 

סיכום

במדריך זה, דנו כיצד ליישם את הפונקציות floor() ו-ceil() של מודול המתמטיקה ב-Python.