Python论坛  - 讨论区

标题:[python-chinese] 问一个unicode转换的问题

2007年12月21日 星期五 11:34

RO rosettas在gmail.com
星期五 十二月 21 11:34:44 HKT 2007

hi all

一个字符串中有如下类似数据:
"\u4e2d\u6587\u6d4b\u8bd5"

请问有什么方法可以很快的将其转化为unicode类型吗?

-- 
with kind regards

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

2007年12月21日 星期五 15:03

yrh yrh168在gmail.com
星期五 十二月 21 15:03:04 HKT 2007

>>> print u"\u4e2d\u6587\u6d4b\u8bd5"
中文测试

在07-12-21,RO <rosettas在gmail.com> 写道:
>
> hi all
>
> 一个字符串中有如下类似数据:
> "\u4e2d\u6587\u6d4b\u8bd5"
>
> 请问有什么方法可以很快的将其转化为unicode类型吗?
>
> --
> with kind regards
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
-------------- 下一部分 --------------
一个HTML附件被移除...
URL: http://python.cn/pipermail/python-chinese/attachments/20071221/ff131d95/attachment.html 

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

2007年12月24日 星期一 09:00

RO rosettas在gmail.com
星期一 十二月 24 09:00:14 HKT 2007

On 12/21/07, yrh <yrh168在gmail.com> wrote:
> >>> print u"\u4e2d\u6587\u6d4b\u8bd5"
> 中文测试

呃,,这个办法当我使用一个字符串变量的时候就不能用了.
teststr = "\u4e2d\u6587\u6d4b\u8bd5"


> >
> > 一个字符串中有如下类似数据:
> > "\u4e2d\u6587\u6d4b\u8bd5"
> >
> > 请问有什么方法可以很快的将其转化为unicode类型吗?
> >

-- 
with kind regards

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

2007年12月24日 星期一 09:16

Wayne moonbingbing在gmail.com
星期一 十二月 24 09:16:28 HKT 2007

>>> s =u"\u4e2d\u6587\u6d4b\u8bd5"
>>> print s
中文测试

在07-12-24,RO <rosettas at gmail.com> 写道:
>
> On 12/21/07, yrh <yrh168 at gmail.com> wrote:
> > >>> print u"\u4e2d\u6587\u6d4b\u8bd5"
> > 中文测试
>
> 呃,,这个办法当我使用一个字符串变量的时候就不能用了.
> teststr = "\u4e2d\u6587\u6d4b\u8bd5"
>
>
> > >
> > > 一个字符串中有如下类似数据:
> > > "\u4e2d\u6587\u6d4b\u8bd5"
> > >
> > > 请问有什么方法可以很快的将其转化为unicode类型吗?
> > >
>
> --
> with kind regards
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese




-- 
wayne
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20071224/a4d5d7fd/attachment.htm 

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

2007年12月24日 星期一 09:20

黄毅 yi.codeplayer在gmail.com
星期一 十二月 24 09:20:16 HKT 2007

eval('u"'+s+'"')
只能想到这个土办法先了。

On Dec 21, 2007 11:34 AM, RO <rosettas at gmail.com> wrote:

> hi all
>
> 一个字符串中有如下类似数据:
> "\u4e2d\u6587\u6d4b\u8bd5"
>
> 请问有什么方法可以很快的将其转化为unicode类型吗?
>
> --
> with kind regards
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese




-- 
http://codeplayer.blogspot.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20071224/1286cfd7/attachment.htm 

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

2007年12月24日 星期一 12:12

RO rosettas在gmail.com
星期一 十二月 24 12:12:15 HKT 2007

On 12/24/07, 黄毅 <yi.codeplayer在gmail.com> wrote:
> eval('u"'+s+'"')
> 只能想到这个土办法先了。
>

Thanks, good idea

-- 
with kind regards

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

2007年12月24日 星期一 14:00

lau stephen liusifan在gmail.com
星期一 十二月 24 14:00:54 HKT 2007

pydoc

ÔÚ07-12-25£¬wch <wch在cic.tsinghua.edu.cn> дµÀ£º
>
>  ÓÐÄܸù¾Ýsrc×¢ÊÍ×Ô¶¯Éú³ÉapiÎĵµµÄ¹¤¾ßÂð?
>  _______________________________________________
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071224/a0082079/attachment.htm 

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

2007年12月24日 星期一 20:25

yrh yrh168在gmail.com
星期一 十二月 24 20:25:14 HKT 2007

有个函数叫unichr,可以用unichr(0x4e2d)、unichr(0x6587)……来转换成unicode对象

2007/12/24, RO <rosettas在gmail.com>:
>
> On 12/24/07, 黄毅 <yi.codeplayer在gmail.com> wrote:
> > eval('u"'+s+'"')
> > 只能想到这个土办法先了。
> >
>
> Thanks, good idea
>
> --
> with kind regards
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
-------------- 下一部分 --------------
一个HTML附件被移除...
URL: http://python.cn/pipermail/python-chinese/attachments/20071224/452c02ab/attachment.html 

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

2007年12月24日 星期一 20:44

leopay leopay在gmail.com
星期一 十二月 24 20:44:39 HKT 2007

On Dec 24, 2007 8:25 PM, yrh <yrh168在gmail.com> wrote:

> Óиöº¯Êý½Ðunichr£¬¿ÉÒÔÓÃunichr(0x4e2d)¡¢unichr(0x6587)¡­¡­À´×ª»»³Éunicode¶ÔÏó
>

àÅ£¬ÕâÒ²ÊÇÒ»¸ö²»´íµÄ·½·¨


>
> 2007/12/24, RO <rosettas在gmail.com>:
>
> > On 12/24/07, »ÆÒã <yi.codeplayer在gmail.com > wrote:
> > > eval('u"'+s+'"')
> > > Ö»ÄÜÏëµ½Õâ¸öÍÁ°ì·¨ÏÈÁË¡£
> > >
> >
> > Thanks, good idea
> >
> > --
> > with kind regards
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071224/cb0b89bb/attachment.html 

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

2007年12月25日 星期二 05:10

wch wch在cic.tsinghua.edu.cn
星期二 十二月 25 05:10:15 HKT 2007

ÓÐÄܸù¾Ýsrc×¢ÊÍ×Ô¶¯Éú³ÉapiÎĵµµÄ¹¤¾ßÂð?
_______________________________________________
python-chinese
Post: send python-chinese在lists.python.cn
Subscribe: send subscribe to python-chinese-request在lists.python.cn
Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
Detail Info: http://python.cn/mailman/listinfo/python-chinese
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071224/c2c36fe8/attachment.html 

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

2007年12月25日 星期二 09:06

liwei anbutu在gmail.com
星期二 十二月 25 09:06:30 HKT 2007

"\u4e2d\u6587\u6d4b\u8bd5".encode('utf-8')

On Dec 24, 2007 8:44 PM, leopay <leopay在gmail.com> wrote:
>
>
>
> On Dec 24, 2007 8:25 PM, yrh <yrh168在gmail.com> wrote:
> > 有个函数叫unichr,可以用unichr(0x4e2d)、unichr(0x6587)……来转换成unicode对象
> >
>
> 嗯,这也是一个不错的方法
>
> >
> >
> > 2007/12/24, RO <rosettas在gmail.com>:
> >
> >
> >
> > > On 12/24/07, 黄毅 < yi.codeplayer在gmail.com > wrote:
> > > > eval('u"'+s+'"')
> > > > 只能想到这个土办法先了。
> > > >
> > >
> > > Thanks, good idea
> > >
> > > --
> > > with kind regards
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to
> python-chinese-request在lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>



-- 
Best Regards

Jerry Lee

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

2007年12月25日 星期二 10:20

shhgs shhgs.efhilt在gmail.com
星期二 十二月 25 10:20:10 HKT 2007

http://epydoc.sourceforge.net/

On Dec 24, 2007 1:00 AM, lau stephen <liusifan在gmail.com> wrote:
> pydoc
>
> 在07-12-25,wch <wch在cic.tsinghua.edu.cn> 写道:
> >
> >
> > 有能根据src注释自动生成api文档的工具吗?
> >
> > _______________________________________________
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>

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

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

    你的回复:

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

    Zeuux © 2024

    京ICP备05028076号