Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 162 Bytes

File metadata and controls

17 lines (14 loc) · 162 Bytes

math

import math
abs()
pow()
max()
min()
round()

math.sqrt()
print(math.floor(3.7)) # 3
print(math.ceil(3.7)) # 4