Skip to content

Latest commit

 

History

History
85 lines (43 loc) · 532 Bytes

python.math.常用方法.md

File metadata and controls

85 lines (43 loc) · 532 Bytes

number 常用方法

import math

ceil方法

向上取整

print(math.ceil(123.223))
124

floor

向下取整

print(math.floor(4.9))
4

round

四舍五入

print(round(4.834, 2))
4.83

pow

指数计算

print(pow(2,10))
1024

abs

绝对值

print(abs(-10))
10

max 、 min

max: 最大值 min: 最小值

print(max(1,10))

print(min(1,10))
10
1