对日语字符进行编码

发布于 2024-12-06 18:21:03 字数 144 浏览 0 评论 0原文

我将如何编码以下内容:

chapter_mapping = {'chapter': ' チャプター'}

这样我就可以调用chapter_mapping['chapter']。谢谢。

How would I encode the following:

chapter_mapping = {'chapter': ' チャプター'}

so I can call chapter_mapping['chapter']. Thank you.

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

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

发布评论

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

评论(2

淡忘如思 2024-12-13 18:21:03

您还需要在 python 2 中向文件添加标头:

# -*- coding: utf-8 -*-
chapter_mapping = {'chapter': u'チャプター'}

You'll also need to add a header to your file in python 2:

# -*- coding: utf-8 -*-
chapter_mapping = {'chapter': u'チャプター'}
め七分饶幸 2024-12-13 18:21:03

始终使用 unicode 文字。

chapter_mapping = {'chapter': u' チャプター'}

Always use unicode literals.

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