Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 numpy.savetxt 在另一个目录中输出文本文件?当前工作目录是/home/user/current/,但我想将txt文件保存到/home/user/test/。如何修改以下代码?谢谢。
out_name = "/home/user/test/txtfile.txt" numpy.savetxt(out_name,output,fmt = '%d \r %d \r %.3f \r\n')
假设fmt与 兼容output,您的代码应将数据保存到out_name.
fmt
output
out_name
它不工作吗?如果是这样,完整的回溯错误消息是什么?