0写入文件时出现十六进制错误?

发布于 2024-10-01 17:38:04 字数 317 浏览 3 评论 0原文

我有一个小问题: 为什么这段代码

somefile = open('foo.txt', 'w')
somefile.write('0B0B0B'.decode('hex'))
somefile.close()

在文件中写入0B0B0B,而这段代码

somefile = open('foo.txt', 'w')
somefile.write('0A0A0A'.decode('hex'))
somefile.close()

在文件中写入0D0A0D0A0D0A?这个“0D”从哪里来?

I have a little problem:
why does this code

somefile = open('foo.txt', 'w')
somefile.write('0B0B0B'.decode('hex'))
somefile.close()

write 0B0B0B in file, and this code

somefile = open('foo.txt', 'w')
somefile.write('0A0A0A'.decode('hex'))
somefile.close()

write 0D0A0D0A0D0A in file? Where does that '0D' come from?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尘曦 2024-10-08 17:38:04

它来自 \n -> \r\n 转换,因为您在 Windows 上运行。如果您想避免这种情况,请以二进制模式 ('wb') 打开文件。

It comes from the \n -> \r\n transformation due to the fact that you're running on Windows. Open the file in binary mode ('wb') if you want to avoid this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文