TypeError: Mismatch between array dtype (‘object’) and format specifier (‘%.18e’)

Python:np.savetxt报错了~~

np.savetxt(‘foo.csv’,uni,delimiter=’,’)

报错信息:
TypeError: Mismatch between array dtype (‘object’) and format specifier (‘%.18e’)

对格式进行指定就好了

np.savetxt(‘foo.csv’,uni,delimiter=’,’ fmt = ‘%s’)

你可能感兴趣的:(学习,numpy,字符串,数据导出,python)