math.copysign()是Python标准数学库中存在的函数。此函数返回一个浮点值,该浮点值由参数x的幅度和参数y的符号(+ ve或-ve)组成。
用法: math.copysign(x, y)
参数:
x:要转换的整数值
y:需要符号的整数
返回:浮点值,由参数x的幅度和参数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
相关用法
- Python math.copysign()用法及代码示例
- Python numpy.copysign()用法及代码示例
- Python math.tan()用法及代码示例
- Python math.sin()用法及代码示例
- Python math.cos()用法及代码示例
- Python math.gcd()用法及代码示例
- Python math sqrt()用法及代码示例
- Python math.factorial()用法及代码示例
- Python math.ceil()用法及代码示例
- Python math.floor()用法及代码示例
- Python math modf()用法及代码示例
- Python math.fabs()用法及代码示例
- Python math hypot()用法及代码示例
- Python math gamma()用法及代码示例
- Python math.dist()用法及代码示例
注:本文由纯净天空筛选整理自garg_ak0109大神的英文原创作品 Python math function | copysign()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。