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]


  

posted on 2018-03-16 19:05  RUI.Z  阅读(826)  评论(0编辑  收藏  举报

导航