Python数学函数|复制签名()
math.copysign() 是Python标准数学库中存在的一个函数。此函数返回一个浮点值,该值由参数 x 的大小和参数 y 的符号(+ve 或 -ve)组成。
Syntax : math.copysign(x, y)
Parameters :
x : Integer value to be converted
y : Integer whose sign is required
Returns : float value consisting of magnitude from parameter x and the sign from parameter y.
代码#1:
# Python code to demonstrate copy.sign() function
import math
def func():
a = 5
b = -7
# implementation of copysign
c = math.copysign(a, b)
return c
print (func())
输出 :
-5.0
代码#2:
# Python code to demonstrate copy.sign() function
import math
def func():
a = 10
b = 10
# implementation of copysign
c = math.copysign(a, b)
return c
print (func())
输出 :
10