我想得到x的平均值。
current_x = sh600004['daily return'][i] #I printed the value of current_x, this line of code works fine.
x_list.append(current_x)
x_sum = sum(x_list)
x_average = x_sum/len(x_list))
我打印出x_sum
的值为-0.00376506024096,len(x_list)
为60. x_average
为-0.00376506024096。
但x_average
应为-0.00376506024096/60 = -6.2751004016e-05
。我尝试了np.divide()
,/
和float(x_sum)/float(len(x_list))
。他们都没有工作。
有人可以帮忙吗?