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.
我有一个二维矩阵,我想用我的 python 脚本以某种方式将它导出到 CSV,有没有一种快速而优雅的方法?
谢谢
如果您的 2D 矩阵是一个 numpy 数组,您可以使用numpy.savetxt并将分隔符设置为“,”。