当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.modf()用法及代码示例


Python math.modf() 方法

math.modf() 方法是 math 模块的一个库方法,用于获取一个数的小数部分和整数部分。它接受一个数字(整数或浮点数)并返回一个包含数字的小数部分和整数部分的元组。

注意:

  • 数字的整数部分也以浮点数形式返回
  • 如果数字是整数,小数部分将为 0.0
  • 如果数字是负数,则两部分都是负数
  • 如果传递除数字以外的任何内容,该方法将返回类型错误“TypeError:a float is required”

math.modf() 方法的语法:

    math.modf(n)

参数: n– 整数或浮点数。

返回值: tuple– 它返回一个包含数字的小数部分和整数部分的元组n

例:

    Input:
    a = 10.23

    # function call
    print(math.modf(a))

    Output:
    (0.23000000000000043, 10.0)

用于演示 math.modf() 方法示例的 Python 代码

# Python code demonstrate example of 
# math.modf() method

# importing math module
import math

# numbers 
a = 10
b = 10.23
c = -10
d = -10.23

# printing the fractional and integer part 
# of the numbers by using math.modf()

print("modf(a):", math.modf(a))
print("modf(b):", math.modf(b))
print("modf(c):", math.modf(c))
print("modf(d):", math.modf(d))

输出

modf(a): (0.0, 10.0)
modf(b): (0.23000000000000043, 10.0)
modf(c): (-0.0, -10.0)
modf(d): (-0.23000000000000043, -10.0)


相关用法


注:本文由纯净天空筛选整理自 math.modf() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。