如何在 python 3 中生成希伯来语字符串?

发布于 2024-09-14 04:41:21 字数 319 浏览 6 评论 0原文

我正在尝试创建希伯来语字符串,但出现语法错误。它可以在 IDLE shell 中运行,但不能在 Pydev 中运行。 这是我到目前为止所尝试过的:

s = 'מחרוזת בעברית' #works in the shell only
s = u'מחרוזת בעברית' #doesn't work at all
s = unicode("מחרוזת בעברית", "UTF-8") #also doesn't work at all

我收到语法错误:以“\xee”开头的非 UTF-8 代码。 它是什么意思以及我应该如何创建希伯来语字符串?

I'm trying to create hebrew strings but get syntax errors. It works in the IDLE shell but not in Pydev.
Here's what I've tried so far:

s = 'מחרוזת בעברית' #works in the shell only
s = u'מחרוזת בעברית' #doesn't work at all
s = unicode("מחרוזת בעברית", "UTF-8") #also doesn't work at all

I get a syntax error: Non-UTF-8 code starting with '\xee'.
What does it mean and what shall I do to create hebrew strings?

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

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

发布评论

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

评论(1

爺獨霸怡葒院 2024-09-21 04:41:21

您的源文件是否以 # -*-coding: utf-8 -*- 行开头?您的文件实际上编码为 utf-8 (而不是其他编码)吗?

它应该可以工作(第一行,其他行不是有效的 Python 3)。

Does your source file start with a # -*- coding: utf-8 -*- line? Is your file actually encoded as utf-8 (and not some other encoding)?

It's supposed to work (the first line, other lines are not valid Python 3).

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