Python fabs() 函数

Python 教程 · 2019-02-01 20:57:19

描述

fabs() 方法返回数字的绝对值,如math.fabs(-10) 返回10.0。

语法

以下是 fabs() 方法的语法:

import math

math.fabs( x )

注意:fabs()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。

参数

  • x -- 数值表达式。

返回值

返回数字的绝对值。

实例

以下展示了使用 fabs() 方法的实例:

实例

#!/usr/bin/python # -*- coding: UTF-8 -*- import math # 导入数学模块 print "math.fabs(-45.17) : ", math.fabs(-45.17) print "math.fabs(100.12) : ", math.fabs(100.12) print "math.fabs(100.72) : ", math.fabs(100.72) print "math.fabs(119L) : ", math.fabs(119L) print "math.fabs(math.pi) : ", math.fabs(math.pi)

以上实例运行后输出结果为:

math.fabs(-45.17) :  45.17
math.fabs(100.12) :  100.12
math.fabs(100.72) :  100.72
math.fabs(119L) :  119.0
math.fabs(math.pi) :  3.14159265359

点击查看所有 Python 教程 文章: https://codercto.com/courses/l/8.html

查看所有标签

Delivering Happiness

Delivering Happiness

Tony Hsieh / Grand Central Publishing / 2010-6-7 / USD 27.00

http://www.deliveringhappinessbook.com/ The visionary CEO of Zappos explains how an emphasis on corporate culture can lead to unprecedented success. Pay new employees $2000 to quit. Make custome......一起来看看 《Delivering Happiness》 这本书的介绍吧!

URL 编码/解码
URL 编码/解码

URL 编码/解码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具