Python-编写函数实现从键盘输入一个列表,要求去掉最大值,去掉最小值,剩下元素计算平均分

  • Post author:
  • Post category:python




def


f


(list1):

list_one=


sorted


(list1)

list_two=list_one[


1


:-


1


]

s=


0



for


i


in


list_two:

s=s+i



return


s/


len


(list_two)

list_1=[]

n=


int


(


input


(





请输入整整数:





))

list_1.append(n)



while


n!=-


1


:

n =


int


(


input


(





请输入整整数:





))

list_1.append(n)

list_1.pop()



#




将最后输入的




-1




删除




print


(f(list_1))




版权声明:本文为xooh0原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。