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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。