http://www.nnzhp.cn/archives/152 1.max,min,round print(max([3,4.563,3,6,2.5])) #取最大值,可循环参数即可,int类型的,字符串类型不行 print(min(9,4,7,1,0)) #取最小值 print(round(3.43535345,2)) #取即为小数,四舍五入 print(round(1.12345,2)) 2.sorted s = ' res = sorted(s) #对字符串排序,默认升序 print(l…