如何在 python 3 中生成希伯来语字符串?
我正在尝试创建希伯来语字符串,但出现语法错误。它可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的源文件是否以
# -*-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).