Python论坛  - 讨论区

标题:[python-chinese] 请教:文本处理中,中文的问题

2006年12月15日 星期五 11:55

void main freeandnil在gmail.com
星期五 十二月 15 11:55:45 HKT 2006

ÀýÈ磺
s = '  ÉÏ°à Çë¼Ù ³ö²î ³Ùµ½ ÔçÍË µ÷ÐÝ Ë«ÐÝ ¼Ó°à ÆäËü  ´¦Â¥µÀ½»»»»úµçÔ´¹ÊÕÏ¡£'
Ïë²éÕÒ×Ö·û´®sÖУ¬"ÆäËü"Á½¸öºº×Ö¡£
ÎҵĵÄ×ö·¨ÊÇ

start_char = 'ÆäËü'

index = string.find(s, start_char)

ÔËÐÐÌáʾ´íÎó£º
sys:1: DeprecationWarning: Non-ASCII character '\xc6' in file d:\wx\week.py
on line 6, but no encoding declared; see
http://www.python.org/peps/pep-0263.html for details


лл£¡
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20061215/e325ded2/attachment.htm 

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

2006年12月15日 星期五 11:59

limodou limodou在gmail.com
星期五 十二月 15 11:59:36 HKT 2006

On 12/15/06, void main <freeandnil在gmail.com> wrote:
>
> 例如:
> s = '  上班 请假 出差 迟到 早退 调休 双休 加班 其它  处楼道交换机电源故障。'
> 想查找字符串s中,"其它"两个汉字。
> 我的的做法是
>
> start_char = '其它'
>
> index = string.find(s, start_char)
>
> 运行提示错误:
> sys:1: DeprecationWarning: Non-ASCII character '\xc6' in file d:\wx\week.py
> on line 6, but no encoding declared; see
> http://www.python.org/peps/pep-0263.html for details
>
在程序的最前面加上

#coding=gbk

gbk可以为其它的。然后按照设置的编码来保存文件。

-- 
I like python!
UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad
My Blog: http://www.donews.net/limodou

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

2006年12月15日 星期五 13:31

尹祥龙 yinxianglong在gmail.com
星期五 十二月 15 13:31:36 HKT 2006

也可以加:
# -*- coding: cp936 -*-


On 12/15/06, limodou <limodou at gmail.com> wrote:
>
> On 12/15/06, void main <freeandnil at gmail.com> wrote:
> >
> > 例如:
> > s = '  上班 请假 出差 迟到 早退 调休 双休 加班 其它  处楼道交换机电源故障。'
> > 想查找字符串s中,"其它"两个汉字。
> > 我的的做法是
> >
> > start_char = '其它'
> >
> > index = string.find(s, start_char)
> >
> > 运行提示错误:
> > sys:1: DeprecationWarning: Non-ASCII character '\xc6' in file
> d:\wx\week.py
> > on line 6, but no encoding declared; see
> > http://www.python.org/peps/pep-0263.html for details
> >
> 在程序的最前面加上
>
> #coding=gbk
>
> gbk可以为其它的。然后按照设置的编码来保存文件。
>
> --
> I like python!
> UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad
> My Blog: http://www.donews.net/limodou
> _______________________________________________
> 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://python.cn/pipermail/python-chinese/attachments/20061215/dee76f72/attachment.html 

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

2006年12月15日 星期五 17:41

void main freeandnil在gmail.com
星期五 十二月 15 17:41:15 HKT 2006

谢谢limdou,尹祥龙
问题解决了。

在 06-12-15,尹祥龙<yinxianglong在gmail.com> 写道:
> 也可以加:
> # -*- coding: cp936 -*-
>
>
> On 12/15/06, limodou <limodou在gmail.com> wrote:
> >
> > On 12/15/06, void main <freeandnil在gmail.com> wrote:
> > >
> > > 例如:
> > > s = '  上班 请假 出差 迟到 早退 调休 双休 加班 其它  处楼道交换机电源故障。'
> > > 想查找字符串s中,"其它"两个汉字。
> > > 我的的做法是
> > >
> > > start_char = '其它'
> > >
> > > index = string.find(s, start_char)
> > >
> > > 运行提示错误:
> > > sys:1: DeprecationWarning: Non-ASCII character '\xc6' in file
> > d:\wx\week.py
> > > on line 6, but no encoding declared; see
> > > http://www.python.org/peps/pep-0263.html for details
> > >
> > 在程序的最前面加上
> >
> > #coding=gbk
> >
> > gbk可以为其它的。然后按照设置的编码来保存文件。
> >
> > --
> > I like python!
> > UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad
> > My Blog: http://www.donews.net/limodou
> > _______________________________________________
> > 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 © 2025

    京ICP备05028076号