2007年12月21日 星期五 11:34
hi all 一个字符串中有如下类似数据: "\u4e2d\u6587\u6d4b\u8bd5" 请问有什么方法可以很快的将其转化为unicode类型吗? -- with kind regards
2007年12月21日 星期五 15:03
>>> 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
2007年12月24日 星期一 09:00
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
2007年12月24日 星期一 09:16
>>> 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
2007年12月24日 星期一 09:20
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
2007年12月24日 星期一 12:12
On 12/24/07, 黄毅 <yi.codeplayer在gmail.com> wrote: > eval('u"'+s+'"') > 只能想到这个土办法先了。 > Thanks, good idea -- with kind regards
2007年12月24日 星期一 14:00
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
2007年12月24日 星期一 20:25
有个函数叫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
2007年12月24日 星期一 20:44
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
2007年12月25日 星期二 05:10
ÓÐÄܸù¾Ý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
2007年12月25日 星期二 09:06
"\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
2007年12月25日 星期二 10:20
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 >
Zeuux © 2024
京ICP备05028076号