数值型包括int、float、complex、bool
数学函数
math函数需要导入math模块
import math
print('abs(x)') # 返回数字的绝对值
# 实例:
print(abs(-10)) # 10
print('fabs(x)') # 返回数字的绝对值
# 实例:
print(math.fabs(-10)) # 10.0
print('round(x,n)') # 返回数字的四舍五入
# 实例:
print(round(70.26)) # 70
print(round(70.26,1)) # 70.3
print('ceil(x)') # 返回数字的上入整数
# 实例:
print(math.ceil(4.1)) # 5
print('floor(x)') # 返回数字的下舍整数
# 实例:
print(math.floor(4.9)) # 4
print('exp(x)') # 返回e的x次幂
# 实例:
print(math.exp(1)) # 2.718281828459045
print('log(x)') # 返回x的自然对数(与exp反过来)
# 实例:
print(math.log(math.e)) # 1.0
print('max(x)') # 返回给定参数(序列)的最大值
# 实例:
print(max(1,10,9)) # 10
print('min(x)') # 返回给定参数(序列)的最小值
# 实例:
print(min(1,10,9)) # 1
print('sqrt(x)') # 返回数字x的平方根
# 实例:
print(math.sqrt(81)) # 9.0
运行结果:
数学常量
常量 ----- 描述
pi ---------- 圆周率(3.14159265358)
e ---------- 自然常数(2.71828182845)
打卡第27天,欢迎对python大数据感兴趣的朋友一起讨论、交流,请多指教!