机器学习:只能将str(而不是“ int”)连接到str

时间:2019-09-15 16:43:17

标签: python-3.x typeerror

我是这种机器学习的新手,正如标题所述,我的代码中有这个错误,我无法解决,我正在Pycharm中使用Python 3.7。

  

TypeError:只能将str(而不是“ int”)连接到str-

# where "Último" is a df with prices.

pred = []
for i in range(0,valid.shape[0]):
    a = train["Último"][len(train)-925+i:].sum() + sum(pred)
    b = a/925
    pred.append(b)

0 个答案:

没有答案