Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

파이썬의 trunc()

<시간/>

이 튜토리얼에서는 math.trunc() 방법.

math.trunc() 메서드 float 값을 자르는 데 사용됩니다. math.floor() 역할을 합니다. 양수 값 및 math.ceil() 메서드 음수 값에 대한 방법.

# importing math module
import math
# floor value
print(math.floor(3.5))
# trunc for positive number
print(math.trunc(3.5))

출력

위의 코드를 실행하면 다음과 같은 결과를 얻을 수 있습니다.

3
3

# importing math module
import math
# ceil value
print(math.ceil(-3.5))
# trunc for negative number
print(math.trunc(-3.5))

출력

위의 코드를 실행하면 다음과 같은 결과를 얻을 수 있습니다.

-3
-3

결론

튜토리얼에서 의문점이 있으면 댓글 섹션에 언급하세요.