一.内置函数 # input()# type()# len()# print()# enumerate()# list()# dict()# tuple()# set()# str()# int()# float()# bool()# print(max([1,2,3,4,7,8,9]))# print(min(1,2,3,4,7,8,9))# print(round(3.1323432,2)) #取几位小数# sorted([5,6,7,343])s='1223423423' # print(…