常见的内置函数
a=[12,31,31,232,34,32,43,54,36]max1=max(a)#最大函数print(max1)min1=min(a)#最小函数print(min1)sum1=sum(a)print(sum1)#求和函数
c=10b=3d=c/bprint(round(d,2))#小数位的精确函数
其他的内置函数网上百度
python4.3内置函数
原文:https://www.cnblogs.com/lma0702/p/11109405.html