Python3 modf() 函數(shù)
描述
modf() 方法返回x的整數(shù)部分與小數(shù)部分,兩部分的數(shù)值符號(hào)與x相同,整數(shù)部分以浮點(diǎn)型表示。
語(yǔ)法
以下是 modf() 方法的語(yǔ)法:
import math
math.modf( x )
注意:modf()是不能直接訪(fǎng)問(wèn)的,需要導(dǎo)入 math 模塊,通過(guò)靜態(tài)對(duì)象調(diào)用該方法。
參數(shù)
- x -- 數(shù)值表達(dá)式。
返回值
返回x的整數(shù)部分與小數(shù)部分,實(shí)例
以下展示了使用 modf() 方法的實(shí)例:
#!/usr/bin/python3
import math # 導(dǎo)入 math 模塊
print ("math.modf(100.12) : ", math.modf(100.12))
print ("math.modf(100.72) : ", math.modf(100.72))
print ("math.modf(119) : ", math.modf(119))
print ("math.modf(math.pi) : ", math.modf(math.pi))
以上實(shí)例運(yùn)行后輸出結(jié)果為:
math.modf(100.12) : (0.12000000000000455, 100.0)
math.modf(100.72) : (0.7199999999999989, 100.0)
math.modf(119) : (0.0, 119.0)
math.modf(math.pi) : (0.14159265358979312, 3.0)
更多建議: