python编写程序, 先输入一组10个元素,再输出数组中比平均值小的所有奇数。
l=[] for i in range(10): l.append(eval(input())) for i in l: if i <sum(l)/len(l) and i%2==1: print(i)