Python 基本统计值计算(函数 列表的应用)
global Lendef Get_Num(): a=input("请输入一个数字") return adef Get_Len(b): global Len Len=len(b)def Get_Mean(b): sum=0 #count=0 for item in b: #count+=1 sum...