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.
我正在使用 savetxt 函数(此处描述)将矩阵保存到 txt 文件,我想知道“换行符”参数有什么作用?此外,“header”参数似乎不适用于最新的 numpy 版本。
它用于设置行尾的表示方式,以实现 Mac/Linux/Windows 之间的互操作性。
Windows 通常用回车符后跟换行符 (\r\n) 来表示行结束。
Mac 过去只使用回车,许多 Microsoft Mac 软件仍然以这种方式保存文件,但在过去十年左右的时间里一直使用换行符 (\n)。
据我所知,Linux 一直使用换行符 (\n)。