2006年06月05日 星期一 14:12
我是新手用了python shell,怎么才能支持中文,有高手的能指教下吗? -- 百炀斩 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/92460f7c/attachment.html
2006年06月05日 星期一 14:15
本来就支持的, 你要怎样的 支持啊? On 6/5/06, 百炀斩 <shenhuan007 at gmail.com> wrote: > > > 我是新手用了python shell,怎么才能支持中文,有高手的能指教下吗? > -- > > 百炀斩 > > _______________________________________________ > 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 > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/5e5ff37c/attachment.html
2006年06月05日 星期一 14:21
在06-6-5,lubiao <lubiao.py at gmail.com> 写道: > > 本来就支持的, 你要怎样的 支持啊? > > On 6/5/06, 百炀斩 <shenhuan007 at gmail.com> wrote: > > > > 我是新手用了python shell,怎么才能支持中文,有高手的能指教下吗? > -- > > 百炀斩 > > _______________________________________________ > 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 > > > > > _______________________________________________ > 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 > > >>> "你好" '\xc4\xe3\xba\xc3' 这是为什么啊? 不过好象通过变量是可以的,呵呵,谢谢 -- 百炀斩 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/67ca05e3/attachment.htm
2006年06月05日 星期一 14:34
不知道为什么, 在windows 上他就 喜欢显示 成 16 进制的编码 。 On 6/5/06, 百炀斩 <shenhuan007 at gmail.com> wrote: > > > >>> "你好" > '\xc4\xe3\xba\xc3' > 这是为什么啊? > 不过好象通过变量是可以的,呵呵,谢谢 > > -- > 百炀斩 > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/750c607a/attachment.html
2006年06月05日 星期一 14:37
在06-6-5,lubiao <lubiao.py at gmail.com> 写道: > > 不知道为什么, 在windows 上他就 喜欢显示 成 16 进制的编码 。 > > > On 6/5/06, 百炀斩 <shenhuan007 at gmail.com> wrote: > > > > > >>> "你好" > '\xc4\xe3\xba\xc3' > 这是为什么啊? > 不过好象通过变量是可以的,呵呵,谢谢 > > -- > 百炀斩 > > 写过的变量一直在的,能把他们去掉吗?还有这个屏幕满了,怎么才能清掉啊? > > > > _______________________________________________ > 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 > > -- 百炀斩 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/3e536fb0/attachment-0001.htm
2006年06月05日 星期一 15:02
> >>> "你好" > '\xc4\xe3\xba\xc3' > 这是为什么啊? > 不过好象通过变量是可以的,呵呵,谢谢 > > -- > 百炀斩 > > python里面的字符串编码默认是 unicode(注意是unicode不是utf8) windows默认的字符编码是 gb18030/gb2312的 你没有告诉python编码类型,所以只能显示成16进制编码 你可以试试 >>> print "你好".decode('gb2312') -- simple is good http://brucewang.net -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/608992dc/attachment.html
2006年06月05日 星期一 15:37
"print" 当然出来的都是中文 On 6/5/06, Bruce Wang <number5 at gmail.com> wrote: > > > > > > >>> "你好" > > '\xc4\xe3\xba\xc3' > > 这是为什么啊? > > 不过好象通过变量是可以的,呵呵,谢谢 > > > > -- > > 百炀斩 > > > > > python里面的字符串编码默认是 unicode(注意是unicode不是utf8) > > windows默认的字符编码是 gb18030/gb2312的 > > 你没有告诉python编码类型,所以只能显示成16进制编码 > > 你可以试试 > >>> print "你好".decode('gb2312') > -- > simple is good > http://brucewang.net > > _______________________________________________ > 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 > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/bc6bcdae/attachment.html
2006年06月05日 星期一 15:41
这是因为解释器要保存的是这个字符串的变量编码,它调用的是__repr__方法,显示出来的是字符串内码。print方法调用的是__str__方法,输出的就是人可以理解的字符串了。 在06-6-5,lubiao <lubiao.py at gmail.com> 写道: > > > "print" 当然出来的都是中文 > On 6/5/06, Bruce Wang <number5 at gmail.com> wrote: > > > > > > > >>> "你好" > > '\xc4\xe3\xba\xc3' > > 这是为什么啊? > > 不过好象通过变量是可以的,呵呵,谢谢 > > > > -- > > 百炀斩 > > > > > python里面的字符串编码默认是 unicode(注意是unicode不是utf8) > > windows默认的字符编码是 gb18030/gb2312的 > > 你没有告诉python编码类型,所以只能显示成16进制编码 > > 你可以试试 > >>> print "你好".decode('gb2312') > -- > simple is good > http://brucewang.net > > _______________________________________________ > 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 > > > > _______________________________________________ > 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://blog.csdn.net/ccat 刘鑫 March.Liu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/88f6259a/attachment.htm
2006年06月05日 星期一 15:47
原来如此, 谢谢! On 6/5/06, 刘鑫 <march.liu at gmail.com> wrote: > > > 这是因为解释器要保存的是这个字符串的变量编码,它调用的是__repr__方法,显示出来的是字符串内码。print方法调用的是__str__方法,输出的就是人可以理解的字符串了。 > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/824fda50/attachment-0001.htm
2006年06月05日 星期一 18:06
在06-6-5,lubiao <lubiao.py at gmail.com> 写道: > > > 原来如此, 谢谢! > > On 6/5/06, 刘鑫 <march.liu at gmail.com> wrote: > > > > > > 这是因为解释器要保存的是这个字符串的变量编码,它调用的是__repr__方法,显示出来的是字符串内码。print方法调用的是__str__方法,输出的就是人可以理解的字符串了。 > > > > > > _______________________________________________ > 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 > > 真的很感谢,果然还是邮件列表里效率高。 -- 百炀斩 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/342a2205/attachment.html
2006年06月05日 星期一 18:08
顺便问一下,有在win上的python的web系统,要架什么服务器吗? 在06-6-5,百炀斩 <shenhuan007 at gmail.com> 写道: > > > > 在06-6-5,lubiao <lubiao.py at gmail.com> 写道: > > > > > 原来如此, 谢谢! > > > > > On 6/5/06, 刘鑫 <march.liu at gmail.com> wrote: > > > > > > 这是因为解释器要保存的是这个字符串的变量编码,它调用的是__repr__方法,显示出来的是字符串内码。print方法调用的是__str__方法,输出的就是人可以理解的字符串了。 > > > > > > _______________________________________________ > 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 > > > 真的很感谢,果然还是邮件列表里效率高。 > > -- > > 百炀斩 > -- 百炀斩 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/bca84248/attachment.htm
2006年06月05日 星期一 21:56
On 6/5/06, 百炀斩 <shenhuan007 at gmail.com> wrote: > > 顺便问一下,有在win上的python的web系统,要架什么服务器吗? > > python 标准库里面就有 BaseHTTPServer, 用来测试不错 建议你 下载 http://www.cherrypy.org Django 和 TurboGears 也可以 -- simple is good http://brucewang.net -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060605/3ec76a5c/attachment.html
2006年06月06日 星期二 00:53
恩,好的,谢谢。以后还有多多问题请教,还请大家不吝赐教哦。 2006/6/5, Bruce Wang <number5 at gmail.com>: > > > > On 6/5/06, 百炀斩 <shenhuan007 at gmail.com> wrote: > > > 顺便问一下,有在win上的python的web系统,要架什么服务器吗? > > > > > > > > python 标准库里面就有 BaseHTTPServer, 用来测试不错 > 建议你 下载 http://www.cherrypy.org > > Django 和 TurboGears 也可以 > > > > -- > simple is good > http://brucewang.net > > _______________________________________________ > 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 > > -- 百炀斩 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060606/79c63d6b/attachment.htm
2006年06月06日 星期二 17:23
还有复杂的zope和plone。 www.zope.org www.plone.org 在 06-6-6,百炀斩<shenhuan007 at gmail.com> 写道: > 恩,好的,谢谢。以后还有多多问题请教,还请大家不吝赐教哦。 > > 2006/6/5, Bruce Wang <number5 at gmail.com>: > > > > > > > On 6/5/06, 百炀斩 <shenhuan007 at gmail.com > wrote: > > > > 顺便问一下,有在win上的python的web系统,要架什么服务器吗? > > > > > > python 标准库里面就有 BaseHTTPServer, 用来测试不错 > 建议你 下载 http://www.cherrypy.org > > Django 和 TurboGears 也可以 > > > > -- > simple is good > http://brucewang.net > _______________________________________________ > 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 > > > > > > -- > 百炀斩 > _______________________________________________ > 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 > >
2006年06月06日 星期二 21:26
学到东西了,关于str()输出字符串内容的问题。 关于WEB系统,我用过mod_python,需要使用Apache服务器的,感觉一般。用CherryPy要舒服一点。关键是选好一个模板系统,Python非常强大,功能实现不必担心。
Zeuux © 2025
京ICP备05028076号