Unicode解密
Unicode Decryption
我读到过 Unicode 加密包括所有其他字符加密,但为什么在尝试此操作时出现错误。我知道我可以用拉丁语解码,但 Unicode 应该是一个超集。
'été'.decode('utf-8')
您需要告诉Python您的源文件的编码:
# coding=utf-8
a = 'été'.decode('utf-8')
print a
有关详细信息,请参阅 PEP 263。这是一个相关的片段:
To define a source code encoding, a magic comment must
be placed into the source files either as first or second
line in the file
我读到过 Unicode 加密包括所有其他字符加密,但为什么在尝试此操作时出现错误。我知道我可以用拉丁语解码,但 Unicode 应该是一个超集。
'été'.decode('utf-8')
您需要告诉Python您的源文件的编码:
# coding=utf-8
a = 'été'.decode('utf-8')
print a
有关详细信息,请参阅 PEP 263。这是一个相关的片段:
To define a source code encoding, a magic comment must be placed into the source files either as first or second line in the file