Math Functions
# Math functions
round(3.67)
print(round(3.67))
print(abs(-20))
print(pow(2, 4))
print(min(3, 5))
print(max(3, 5))
INFO
# Math functions
round(3.67)
print(round(3.67))
print(abs(-20))
print(pow(2, 4))
print(min(3, 5))
print(max(3, 5))