数学相关内置函数

描述:

abs函数的作用:取一个数的绝对值 

print(abs(100))   # 100
print(abs(-100))  # 100

  

原文地址:https://www.cnblogs.com/yujiemeigui/p/14611126.html