本文介绍了帮助unicode的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,


我是意大利人,我说英语不好。我的问题是:


为什么这个结构:


print u" \ u00" + str(41)


生成一个错误,这个:


print u" \ u0041"不?

我可以在程序中使用所有65536个unicode符号吗?例如,我需要

使用void set的数学符号。它在Windows中的

符号表中有一个0198号码。


谢谢

-

Noixe

Hello,

I''m italian and i not speak a good english. My problem is this:

Why this istruction:

print u"\u00" + str(41)

generate an error and this:

print u"\u0041" no?
Can I use all 65536 symbols of unicode in my program? For example, I need to
use the mathematic symbol of void set. It has a 0198 number in a table of
symbol that there is in Windows.

Thanks
--
Noixe

推荐答案




使用所有unicode符号没问题。


但我不认为空集符号是Unicode代码点U + 0198:



No problem to use all unicode symbols.

But I don''t think the empty set symbols is Unicode code point U+0198:



u''\ u2205''


所以我认为你应该使用U + 2205?

--Irmen


u''\u2205''

So I think you should use U+2205 instead?
--Irmen




这篇关于帮助unicode的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 00:44