logo

Python의 Floor() 및 ceil() 함수

이번 튜토리얼에서는 Python에서 math 모듈의 Floor() 및 ceil() 함수를 사용하는 방법을 알아봅니다.

바닥() 함수:

Floor() 함수는 'X'보다 크지 않은 가장 큰 정수 값을 의미하는 'X'의 바닥 정수를 가져오는 데 사용됩니다. 기본적으로 가장 가까운 반올림 숫자입니다.

통사론:

 math.floor(X) 

매개변수:

숫자 표현식을 전달할 수 있습니다.

보고:

'X'보다 크지 않은 가장 큰 정수 값을 반환합니다.

Python에서 Floor() 함수를 구현하는 아이디어를 얻기 위해 예제를 살펴보겠습니다.

예:

 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() 함수:

Python에서 math 모듈의 ceil() 함수는 'X'의 상한값을 반환받는 데 사용됩니다. 이는 'X'보다 작지 않은 가장 작은 정수 값을 의미하며 기본적으로 가장 가까운 반올림 숫자입니다. 그것.

통사론:

 math.ceil(X) 

매개변수:

숫자 표현식을 전달할 수 있습니다.

보고:

'X'보다 작지 않은 가장 작은 정수 값을 반환합니다.

Python에서 ceil() 함수를 구현하는 아이디어를 얻기 위해 예제를 살펴보겠습니다.

예:

 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 

결론

이 튜토리얼에서는 Python에서 Math 모듈의 Floor() 및 ceil() 함수를 구현하는 방법을 논의했습니다.