这是我当前写入文件的方式。但是,我不能使用UTF-8?

发布于 2024-09-03 03:35:35 字数 170 浏览 4 评论 0原文

f = open("go.txt", "w")
f.write(title)
f.close()

如果“标题”是日文/utf-8 格式怎么办?如何修改此代码以便能够编写“标题”而不会出现 ascii 错误?

编辑:那么,我如何读取这个UTF-8格式的文件呢?

f = open("go.txt", "w")
f.write(title)
f.close()

What if "title" is in japanese/utf-8? How do I modify this code to be able to write "title" without having the ascii error?

Edit: Then, how do I read this file in UTF-8?

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

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

发布评论

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

评论(2

对风讲故事 2024-09-10 03:35:35

如何使用 UTF-8

import codecs

# ...
# title is a unicode string
# ...

f = codecs.open("go.txt", "w", "utf-8")
f.write(title)

# ...

fileObj = codecs.open("go.txt", "r", "utf-8")
u = fileObj.read() # Returns a Unicode string from the UTF-8 bytes in the file

How to use UTF-8:

import codecs

# ...
# title is a unicode string
# ...

f = codecs.open("go.txt", "w", "utf-8")
f.write(title)

# ...

fileObj = codecs.open("go.txt", "r", "utf-8")
u = fileObj.read() # Returns a Unicode string from the UTF-8 bytes in the file
魂ガ小子 2024-09-10 03:35:35

这取决于您是否要插入 Unicode UTF-8 字节顺序标记 ,其中我知道的唯一方法是打开一个普通文件并写入:

import codecs

f = open('go.txt', 'wb')
f.write(codecs.BOM_UTF8)
f.write(title.encode('utf-8')
f.close()

一般来说,我不想添加 UTF-8 BOM,但以下内容就足够了:

import codecs

f = codecs.open('go.txt', 'w', 'utf-8')
f.write(title)
f.close()

It depends on whether you want to insert a Unicode UTF-8 byte order mark, of which the only way I know of is to open a normal file and write:

import codecs

f = open('go.txt', 'wb')
f.write(codecs.BOM_UTF8)
f.write(title.encode('utf-8')
f.close()

Generally though, I don't want to add a UTF-8 BOM and the following will suffice though:

import codecs

f = codecs.open('go.txt', 'w', 'utf-8')
f.write(title)
f.close()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文