Python论坛  - 讨论区

标题:[python-chinese] 奇怪的IDLE

2006年08月09日 星期三 13:10

鳄鱼 crocodile.liu at 163.com
Wed Aug 9 13:10:47 HKT 2006

#coding: utf-8

print '²â'
print 'ÊÔ'
print '²âÊÔ'
print '²âÊÔ²â'
print '²âÊÔ²âÊÔ'

ÉÏÊö´úÂëÔÚIDLEÖÐÎļþÒѾ­´æΪutf8±àÂ룬µ«F5ÔËÐкóÈ´ÏÔʾ:
>>>
²â
ÊÔ
测试
²âÊÔ²â
测试测试
>>>

ºÜÆæ¹Ö£¿


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

2006年08月09日 星期三 13:17

R.Potato rough.vanzolo at gmail.com
Wed Aug 9 13:17:01 HKT 2006

print u'string'
ÔÙÊÔÊÔ


On 8/9/06, öùÓã <crocodile.liu at 163.com> wrote:
>
>
> #coding: utf-8
>
> print '²â'
> print 'ÊÔ'
> print '²âÊÔ'
> print '²âÊÔ²â'
> print '²âÊÔ²âÊÔ'
>
> ÉÏÊö´úÂëÔÚIDLEÖÐÎļþÒѾ­´æΪutf8±àÂ룬µ«F5ÔËÐкóÈ´ÏÔʾ:
> >>>
> ²â
> ÊÔ
> 测试
> ²âÊÔ²â
> 测试测试
> >>>
>
> ºÜÆæ¹Ö£¿
>
> _______________________________________________
> 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
>



-- 
Thanks&&Regards;,
Li Hongliang

Юһ¾íÊé
¹ÛÌì²âµØ
ÕÌÒ»¿Ú½£
±£¼ÒÎÀ¹ú
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060809/c731268b/attachment-0001.html

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

2006年08月09日 星期三 13:18

flyaflya flyaflya at gmail.com
Wed Aug 9 13:18:45 HKT 2006

¹À¼Æ²»ÊÇÕæµÄ´æ³Éutf-8¸ñʽ£¬ÓÃnewedit¿ÉÒÔÑ¡Ôñ±£´æ³Éutf-8

On 8/9/06, öùÓã <crocodile.liu at 163.com> wrote:
>
>
> #coding: utf-8
>
> print '²â'
> print 'ÊÔ'
> print '²âÊÔ'
> print '²âÊÔ²â'
> print '²âÊÔ²âÊÔ'
>
> ÉÏÊö´úÂëÔÚIDLEÖÐÎļþÒѾ­´æΪutf8±àÂ룬µ«F5ÔËÐкóÈ´ÏÔʾ:
> >>>
> ²â
> ÊÔ
> 测试
> ²âÊÔ²â
> 测试测试
> >>>
>
> ºÜÆæ¹Ö£¿
>
> _______________________________________________
> 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://www.flyaflya.com powered by pygame+python
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060809/0e81bd5d/attachment.html

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

2006年08月09日 星期三 13:19

Leo Jay python.leojay at gmail.com
Wed Aug 9 13:19:24 HKT 2006

On 8/9/06, öùÓã <crocodile.liu at 163.com> wrote:
>
>
> #coding: utf-8
>
> print '²â'
> print 'ÊÔ'
> print '²âÊÔ'
> print '²âÊÔ²â'
> print '²âÊÔ²âÊÔ'
>
> ÉÏÊö´úÂëÔÚIDLEÖÐÎļþÒѾ­´æΪutf8±àÂ룬µ«F5ÔËÐкóÈ´ÏÔʾ:
> >>>
> ²â
> ÊÔ
> 测试
> ²âÊÔ²â
> 测试测试
> >>>
>
> ºÜÆæ¹Ö£¿
>

ÄãÃ÷Ã÷˵ÎļþÀïµÄÊý¾ÝÊÇUTF-8£¬µ«printµÄÊý¾ÝÓÖ²»ÊÇunicodeµÄ£¬ÕâÑù»á³öÎÊÌâ°É£¿

#coding: utf-8

print u'²â'
print u'ÊÔ'
print u'²âÊÔ'
print u'²âÊÔ²â'
print u'²âÊÔ²âÊÔ'

ÕâÑù¾ÍûÎÊÌâÁË¡£


-- 
Best Regards,
Leo Jay
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060809/67bd5b50/attachment.htm

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

2006年08月09日 星期三 13:42

鳄鱼 crocodile.liu at 163.com
Wed Aug 9 13:42:50 HKT 2006

¹Ø¼üÊÇÒ»¸ö£¬Èý¸ö×ÖÕý³££¬ÆäËûµÄ¾Í²»ÐÐÁËÄØ£¿

Leo Jay дµÀ:
> On 8/9/06, *öùÓã* <crocodile.liu at 163.com
> crocodile.liu at 163.com>> wrote:
>
>
>     #coding: utf-8
>
>     print '²â'
>     print 'ÊÔ'
>     print '²âÊÔ'
>     print '²âÊÔ²â'
>     print '²âÊÔ²âÊÔ'
>
>     ÉÏÊö´úÂëÔÚIDLEÖÐÎļþÒѾ­´æΪutf8±àÂ룬µ«F5ÔËÐкóÈ´ÏÔʾ:
>     >>>
>     ²â
>     ÊÔ
>     测试
>     ²âÊÔ²â
>     测试测试
>     >>>
>
>     ºÜÆæ¹Ö£¿
>
>
> ÄãÃ÷Ã÷˵ÎļþÀïµÄÊý¾ÝÊÇUTF-8£¬µ«printµÄÊý¾ÝÓÖ²»ÊÇunicodeµÄ£¬ÕâÑù»á³öÎÊ
> Ìâ°É£¿
>
> #coding: utf-8
>
> print u'²â'
> print u'ÊÔ'
> print u'²âÊÔ'
> print u'²âÊÔ²â'
> print u'²âÊÔ²âÊÔ'
>
> ÕâÑù¾ÍûÎÊÌâÁË¡£
>
>
>
> -- 
> Best Regards,
> Leo Jay
> ------------------------------------------------------------------------
>
> _______________________________________________
> 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



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

2006年08月09日 星期三 13:59

Yingbo Qiu qiuyingbo at gmail.com
Wed Aug 9 13:59:07 HKT 2006

我刚刚测了一下,没有任何问题.  我的程序见附件
-------------- next part --------------
#coding: utf-8

print '??'
print '??'
print '????'
print '??????'
print '????????'

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

2006年08月09日 星期三 14:17

鳄鱼 crocodile.liu at 163.com
Wed Aug 9 14:17:50 HKT 2006

看一下我的程序,见附件,偶是在win下

Yingbo Qiu 写道:
> 我刚刚测了一下,没有任何问题. 我的程序见附件
> ------------------------------------------------------------------------
>
> #coding: utf-8
>
> print '²â'
> print 'ÊÔ'
> print '²âÊÔ'
> print '²âÊÔ²â'
> print '²âÊÔ²âÊÔ'
> ------------------------------------------------------------------------
>
> _______________________________________________
> 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 --------------
#coding: utf-8

print '测'
print '试'
print '测试'
print '测试测'
print '测试测试'

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

2006年08月09日 星期三 14:23

yi huang yi.codeplayer at gmail.com
Wed Aug 9 14:23:52 HKT 2006

不要把文件存成utf-8就好了

2006/8/9, 鳄鱼 <crocodile.liu at 163.com>:
>
> 看一下我的程序,见附件,偶是在win下
>
> Yingbo Qiu 写道:
> > 我刚刚测了一下,没有任何问题. 我的程序见附件
> > ------------------------------------------------------------------------
> >
> > #coding: utf-8
> >
> > print '²â'
> > print 'ÊÔ'
> > print '²âÊÔ'
> > print '²âÊÔ²â'
> > print '²âÊÔ²âÊÔ'
> > ------------------------------------------------------------------------
> >
> > _______________________________________________
> > 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
>
>
>
> #coding: utf-8
>
> print '测'
> print '试'
> print '测试'
> print '测试测'
> print '测试测试'
>
> _______________________________________________
> 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.blogbus.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060809/095852f7/attachment.htm

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号