82,求中位数。如果是奇数个数,求中间那个数,如果是偶数个,求中间两个数的平均数 l=list(map(int,input().split())) n=len(l) if n%2==0: print ((l[n//2-1]+l[n//2])/2) else: print (l[n//2])