学习|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’)】报错信息:
TypeError: Mismatch between array dtype (‘object’) and format specifier (‘%.18e’)
对格式进行指定就好了
np.savetxt(‘foo.csv’,uni,delimiter=’,’ fmt = ‘%s’)

    推荐阅读