AttributeError:' NoneType'对象没有属性'格式'在python中

时间:2017-01-23 04:32:16

标签: python-3.4

print('Split {0} rows into train={1} and test={2} rows').format(len(dataset), len(trainingSet), len(testSet))

有一个 AttributeError: 'NoneType' object has no attribute 'format' for this lines

请帮我解决这个错误。

1 个答案:

答案 0 :(得分:1)

你必须在print语句的结果上调用字符串上的.format()。像这样:

print('Split {0} rows into train={1} and test={2} rows'.format(len(dataset), len(trainingSet), len(testSet)))