为什么当我转换类型时也会打印?

时间:2019-03-21 07:15:01

标签: python list numpy

为什么写此行:

lines = np.array(''.join(lines), dtype = float)

或此行:

FYI - lines =  ['.0 .0 .3 .7 .2 .0 .0 .0 .0 .0 .0 .0 .0 .0 ', '.0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 ']

我运行代码(IDLE中的 F5 ),它还会打印出数据吗?

for

字符串列表,谢谢。

1 个答案:

答案 0 :(得分:1)

作为错误的一部分,它可能正在打印出数据。我无法使您的代码按当前指定的方式运行,并且出现以下错误,该错误还会打印出数据:

SignaturePad.prototype.removeBlanks = function () {...
lines = ['.0 .0 .3 .7 .2 .0 .0 .0 .0 .0 .0 .0 .0 .0 ', '.0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 .0 ']
lines = np.array(''.join(lines), dtype = float)