TypeError: 'builtin_function_or_method' object is not subscriptable
调用msort函数获得排序后的数组,再获取位于中间的那个数字:
N = len(c)
print("middle =", sorted[(N - 1)/2])
输出:
改为 sorted([(N - 1)/2]) ,输出结果:middle = [125.5]
调用msort函数获得排序后的数组,再获取位于中间的那个数字:
N = len(c)
print("middle =", sorted[(N - 1)/2])
输出:
改为 sorted([(N - 1)/2]) ,输出结果:middle = [125.5]