Python论坛  - 讨论区

标题:[python-chinese] [FW]Unicode Howto

2005年08月06日 星期六 11:53

limodou limodou at gmail.com
Sat Aug 6 11:53:31 HKT 2005

Andrew Kuchling(Python文档中的What's new的作者)写的一篇关于Unicode的文档,英文版,有兴趣看一看。

http://www.amk.ca/python/howto/unicode

-- 
I like python! 
My Donews Blog: http://www.donews.net/limodou
New Google Maillist: http://groups-beta.google.com/group/python-cn

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月12日 星期五 07:11

li liomao liomao at gmail.com
Fri Aug 12 07:11:03 HKT 2005

英语是问题呀,
什么时候中文成了世界第一语言,哪就好了.

在 05-8-6,limodou<limodou at gmail.com> 写道:
> Andrew Kuchling(Python文档中的What's new的作者)写的一篇关于Unicode的文档,英文版,有兴趣看一看。
> 
> http://www.amk.ca/python/howto/unicode
> 
> --
> I like python!
> My Donews Blog: http://www.donews.net/limodou
> New Google Maillist: http://groups-beta.google.com/group/python-cn
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月12日 星期五 09:57

Tangram Liu langram at gmail.com
Fri Aug 12 09:57:23 HKT 2005

ÎÒÏÖÔÚΪÁË·ÃÎÊutf-8¸ñʽµÄmysqlÊý¾Ý¿â£¬²ÉÓõķ½·¨ÊÇÓÃutf-8¸ñʽ´æ´¢pyÔ´Îļþ£¬ÓÃwxpythonÊä³ö½çÃæʱת»»µ½gb¸ñʽ£¬´æ´¢µ½Êý¾Ý¿âʱÔÙת»»»Øutf-8¡£ÏÂÃæÊǸö¼òµ¥µÄÀý×Ó£º

# -*- coding: utf-8 -*-

# original string is utf-8 format
a = "utf-8×Ö·û´®"
# convert utf-8 to gb
b = unicode(a,"utf-8").encode("cp936")
# conver gb to utf-8
c = unicode(b,"cp936").encode("utf-8")
print "a="+a
print "b="+b
print "c="+c

Êä³ö½á¹ûΪ£º
a=utf-8字符ä¸
b=utf-8×Ö·û´®
c=utf-8字符ä¸

ÔÚ05-8-6£¬limodou <limodou at gmail.com> дµÀ£º
> 
> Andrew Kuchling(PythonÎĵµÖеÄWhat's newµÄ×÷Õß)дµÄһƪ¹ØÓÚUnicodeµÄÎĵµ£¬Ó¢Îİ棬ÓÐÐËȤ¿´Ò»¿´¡£
> 
> http://www.amk.ca/python/howto/unicode
> 
> --
> I like python!
> My Donews Blog: http://www.donews.net/limodou
> New Google Maillist: http://groups-beta.google.com/group/python-cn
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050812/678796cd/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月12日 星期五 11:26

Qiangning Hong hongqn at gmail.com
Fri Aug 12 11:26:58 HKT 2005

Tangram Liu wrote:
> ÎÒÏÖÔÚΪÁË·ÃÎÊutf-8¸ñʽµÄmysqlÊý¾Ý¿â£¬²ÉÓõķ½·¨ÊÇÓÃutf-8¸ñʽ´æ´¢pyÔ´ÎÄ
> ¼þ£¬ÓÃwxpythonÊä³ö½çÃæʱת»»µ½gb¸ñʽ£¬´æ´¢µ½Êý¾Ý¿âʱÔÙת»»»Øutf-8¡£

wxpythonÓÐunicode°æ±¾£¬²»ÐèҪת»»µ½gb¸ñʽ£¬Ö±½Ó¸øunicode¶ÔÏó¾Í¿ÉÒÔ¡£

> ÏÂÃæ
> ÊǸö¼òµ¥µÄÀý×Ó£º
> 
> # -*- coding: utf-8 -*-
> 
> # original string is utf-8 format
> a = "utf-8×Ö·û´®"
> # convert utf-8 to gb
> b = unicode(a,"utf-8").encode("cp936")
> # conver gb to utf-8
> c = unicode(b,"cp936").encode("utf-8")
> print "a="+a
> print "b="+b
> print "c="+c
> 
> Êä³ö½á¹ûΪ£º
> a=utf-8字符ä¸
> b=utf-8×Ö·û´®
> c=utf-8字符ä¸

ÕâÊÇÒòΪÄãprintµ½µÄ¿ØÖÆ̨ÊÇcp936±àÂëµÄ¡£

-- 
Qiangning Hong

I'm usually annoyed by IDEs because, for instance, they don't use VIM
as an editor. Since I'm hooked to that, all IDEs I've used so far have
failed to impress me.
    -- Sybren Stuvel @ c.l.python

Get Firefox!
<http://www.spreadfirefox.com/?q=affiliates&id=67907&t=1>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月14日 星期日 18:42

limodou limodou at gmail.com
Sun Aug 14 18:42:53 HKT 2005

在 05-8-12,li liomao<liomao at gmail.com> 写道:
> 英语是问题呀,
> 什么时候中文成了世界第一语言,哪就好了.
> 

这虽然是一种很好的想法,但是不切合实际。因此应该抓紧时间学英语。

-- 
I like python! 
My Donews Blog: http://www.donews.net/limodou
New Google Maillist: http://groups-beta.google.com/group/python-cn

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月15日 星期一 09:58

Bruce Wang number5 at gmail.com
Mon Aug 15 09:58:09 HKT 2005

On 8/12/05, li liomao <liomao at gmail.com> wrote:
> 英语是问题呀,
> 什么时候中文成了世界第一语言,哪就好了.

这种事情不会自动发生的,可能需要一代或几代人推广,推广的时候不能光用中文,人家听不懂的,所以还是要先学好英文先

我可以很明确的告诉你,为学好英文花多少代价都是值得的,在IT行业更是如此。
-- 
simple is good

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号