Python fabs() 函数

栏目: 编程语言 · Python · 编程教程 · python 教程 · 发布时间: 7年前

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

描述

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

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Design Accessible Web Sites

Design Accessible Web Sites

Jeremy Sydik / Pragmatic Bookshelf / 2007-11-05 / USD 34.95

It's not a one-browser web anymore. You need to reach audiences that use cell phones, PDAs, game consoles, or other "alternative" browsers, as well as users with disabilities. Legal requirements for a......一起来看看 《Design Accessible Web Sites》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

在线进制转换器
在线进制转换器

各进制数互转换器