Python/ref math copysign
来自菜鸟教程
<languages />
Python math.copysign()方法
例
返回第一个参数的值和第二个参数的符号:
#Import math Library import math #Return the value of the first parameter and the sign of the second parameter print(math.copysign(4, -1)) print(math.copysign(-8, 97.21)) print(math.copysign(-43, -76))
定义和用法
The
math.copysign()
方法返回一个浮点数,该浮点数由第一个参数的值和第二个参数的正负号(+/-)组成。
句法
math.copysign(x, y)
参数值
参数 | 描述 |
---|---|
x | 需要。一个号码。返回值将具有此参数的值 |
y | 需要。一个号码。返回值将带有此参数的符号(+/-) |
技术细节
返回值: | A
|
Python版本: | 2.6 |