展开全部
#!/bin/env python
a = []
while True:
for i in range(1,11):
try :b = float(raw_input(‘The %s NUM:’%i))
except ValueError :
continue
a.append(b)
print a
if len(a) >= 5:
a.sort()
print ‘Mean of the smallest five is’,float(sum(a[:5])) / 5
break
else :
print ‘Not enough,retype!’
continue
try异常处理,float浮点数,append列表属性之追加内容,sort列表属性之排序32313133353236313431303231363533e78988e69d8331333337623439,[:5]列表属性之前5值,sum列表求和。如果一定要让输入整数类型,try可以改改。