好吧,我试图使用来自test.txt文件的行来运行一些测试,并将它们导入numpy数组中,以便对其进行一些计算。但是,在我编写完代码后,它显示了错误消息在标题中。
这是我的代码:
import numpy as np
with open('test.txt', 'r') as f:
f_contents = np.array([f.readline()])
print(f_contents)
a = f_contents
f_contents = np.array([f.readline()])
print(f_contents)
b = f_contents
print(a+b)
行
print(a+b)
是生成错误消息的原因:numpy.core._exceptions.UFuncTypeError:ufunc'add'不包含签名匹配类型为(dtype('dtype('
编辑:我是编码新手,自学成才,请原谅任何逻辑错误或粗略的编码风格