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


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


在Python中,数学模块包含许多数学运算,可以使用该模块轻松执行。math.copysign(a, b)函数返回一个浮点数,其浮点值为a,但符号为b。

用法: math.copysign(a, b)

参数:
a, b: numeric values.

返回:  Return absolute value of a but the sign of b.

代码1:

# Python code to demonstrate the working of copysign() 
    
# importing "math" for mathematical operations  
import math  
    
a = 5.2
b = -25
    
# returning the copysign  
print ("The copysign of 5.2 and -25 is:", end ="")  
print (math.copysign(a, b))
输出:
The copysign of 5.2 and -25 is:-5.2

代码2:

# Python code to demonstrate the working of factorial() 
  
# importing "math" for mathematical operations  
import math  
  
# returning the copysign 
print (math.copysign(-13, 25.5)) 
print (math.copysign(2.87, -15))
输出:
13.0
-2.87


相关用法


注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Python | math.copysign() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。