Python abs() 函数
Python 教程
· 2019-02-01 19:59:15
描述
abs() 函数返回数字的绝对值。
语法
以下是 abs() 方法的语法:
abs( x )
参数
- x -- 数值表达式。
返回值
函数返回x(数字)的绝对值。实例
以下展示了使用 abs() 方法的实例:
#!/usr/bin/python
print "abs(-45) : ", abs(-45)
print "abs(100.12) : ", abs(100.12)
print "abs(119L) : ", abs(119L)
以上实例运行后输出结果为:
abs(-45) : 45 abs(100.12) : 100.12 abs(119L) : 119
点击查看所有 Python 教程 文章: https://www.codercto.com/courses/l/8.html
Hello World
Hannah Fry / W. W. Norton Company / 2018-9 / GBP 17.99
A look inside the algorithms that are shaping our lives and the dilemmas they bring with them. If you were accused of a crime, who would you rather decide your sentence—a mathematically consistent ......一起来看看 《Hello World》 这本书的介绍吧!
图片转BASE64编码
在线图片转Base64编码工具
URL 编码/解码
URL 编码/解码