亿迅智能制造网
工业4.0先进制造技术信息网站!
首页 | 制造技术 | 制造设备 | 工业物联网 | 工业材料 | 设备保养维修 | 工业编程 |
home  MfgRobots >> 亿迅智能制造网 >  >> Industrial programming >> Python

Python abs() 函数:绝对值示例

Python abs()

Python abs() 是python标准库中的一个内置函数。它返回给定数字的绝对值。一个数的绝对值是不考虑其符号的值。该数字可以是整数、浮点数或复数。如果给定的数字是复数,那么它将返回其大小。

语法:

abs(value)

参数:(值)

要给 abs() 以获取绝对值的输入值。它可以是整数、浮点数或复数。

返回值:

它将返回给定数字的绝对值。

示例:

代码示例1:整数和浮点数

要获取整数和浮点数的绝对值,请检查以下代码:

# testing abs() for an integer and float

int_num = -25

float_num = -10.50

print("The absolute value of an integer number is:", abs(int_num))
print("The absolute value of a float number is:", abs(float_num))

输出:

The absolute value of an integer number is: 25
The absolute value of a float number is: 10.5

示例 2:复数

求复数的绝对值

# testing abs() for a complex number

complex_num = (3+10j)

print("The magnitude of the complex number is:", abs(complex_num))

输出:

The magnitude of the complex number is: 10.44030650891055

总结:


Python

  1. Python 变量、常量和文字
  2. Python 函数参数
  3. Python 匿名/Lambda 函数
  4. Python 生成器
  5. Python 闭包
  6. Python 装饰器
  7. Python Print() 语句:如何通过示例打印
  8. Python String strip() 函数与示例
  9. 带有示例的 Python 字符串计数()
  10. Python String format() 举例说明
  11. Python String find() 方法及示例
  12. 带有示例的 Python Lambda 函数