2005年02月19日 星期六 21:47
On Sat, 19 Feb 2005 21:16:28 +0800, cry <zyqmail at 163.net> wrote: > limodou,您好! > > 没有办法,只好使用笨办法: > > u = u"123" > b="" > for c in u: > b += chr(ord(c)/256) > b += chr(ord(c)%256) > sock.send(b) > > 这样还不用考虑字节序的问题。 等价于: u = u"123" b = u.encode("utf-16-be") sock.send(b) -- Excellent FOSS (Free/Open Source Software): Get Firefox! http://www.spreadfirefox.com/?q=affiliates&id=67907&t=1 Reclaim Your Inbox! http://www.spreadfirefox.com/?q=affiliates&id=67907&t=183
2005年02月19日 星期六 22:17
Qiangning Hong,您好! 谢谢,又学了一招。:) 在 2005-02-19 21:47:00 您写道: >On Sat, 19 Feb 2005 21:16:28 +0800, cry <zyqmail at 163.net> wrote: >> limodou,您好! >> >> 没有办法,只好使用笨办法: >> >> u = u"123" >> b="" >> for c in u: >> b += chr(ord(c)/256) >> b += chr(ord(c)%256) >> sock.send(b) >> >> 这样还不用考虑字节序的问题。 > >等价于: > >u = u"123" >b = u.encode("utf-16-be") >sock.send(b) > >-- >Excellent FOSS (Free/Open Source Software): > >Get Firefox! >http://www.spreadfirefox.com/?q=affiliates&id=67907&t=1 > >Reclaim Your Inbox! >http://www.spreadfirefox.com/?q=affiliates&id=67907&t=183 >_______________________________________________ >python-chinese list >python-chinese at lists.python.cn >http://python.cn/mailman/listinfo/python-chinese 致 礼! cry zyqmail at 163.net
Zeuux © 2025
京ICP备05028076号