Python论坛  - 讨论区

标题:[python-chinese] Python中操作.ini文件的问题

2005年05月12日 星期四 16:51

Carambo qutr at tjub.com.cn
Thu May 12 16:51:03 HKT 2005

python-chinese :

  大家好!
    
怎样删除已有.ini文件中的一个 section 和该 section 下的所有 option 及 option 所对应的值?
或者是怎样将该 section 下的所有 option 及 option 所对应的值覆盖掉?



Carambo , qutr at tjub.com.cn 
2005-5-12 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050512/ac0e36b6/attachment.htm

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

2005年05月12日 星期四 17:16

Zoom Quiet zoom.quiet at gmail.com
Thu May 12 17:16:33 HKT 2005

学MoinMoin 直接使用 Class 作为配置文件吧!
ini 太不灵活了!!!

在05-5-12,Carambo<qutr at tjub.com.cn> 写道:
> python-chinese :
> 
>   大家好! 
>      
> 怎样删除已有.ini文件中的一个 section 和该 section 下的所有 option 及 option 所对应的值? 
> 或者是怎样将该 section 下的所有 option 及 option 所对应的值覆盖掉?
>  
>  
>  
>  
> Carambo, qutr at tjub.com.cn
> 2005-5-12 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
[Time is unimportant, only life important!]

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

2005年05月12日 星期四 17:27

Qiangning Hong hongqn at gmail.com
Thu May 12 17:27:05 HKT 2005

from ConfigParser import RawConfigParser

cfg = RawConfigParser()
cfg.read('whatever.ini')
cfg.remove_section('section_to_remove')
cfg.write(file('whatever.ini', 'w'))

On 5/12/05, Carambo <qutr at tjub.com.cn> wrote:
> 
> python-chinese :
> 
> 大家好!
>  怎样删除已有.ini文件中的一个 section 和该 section 下的所有 option 及 option 所对应的值?
> 或者是怎样将该 section 下的所有 option 及 option 所对应的值覆盖掉?
>   Carambo, qutr at tjub.com.cn
> 2005-5-12 
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
Qiangning Hong
Get Firefox! <
http://www.spreadfirefox.com/?q=affiliates&id=67907&t=1>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050512/587457d8/attachment.htm

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

2005年05月12日 星期四 23:00

大熊 bearsprite at gmail.com
Thu May 12 23:00:39 HKT 2005

我修改了一个ini中的某个项目的值,保存后打开发现,里面各个项目的顺序和原先不一样了,不知道是为什么?虽说不影响使用,但感觉有些别扭

05-5-12,Qiangning Hong <hongqn at gmail.com> 写道:
> 
> from ConfigParser import RawConfigParser
> 
> cfg = RawConfigParser()
> cfg.read('whatever.ini')
> cfg.remove_section('section_to_remove')
> cfg.write(file('whatever.ini', 'w'))
> 
> On 5/12/05, Carambo <qutr at tjub.com.cn> wrote:
> 
> > python-chinese :
> > 
> > 大家好!
> >  怎样删除已有.ini文件中的一个 section 和该 section 下的所有 option 及 option 所对应的值?
> > 或者是怎样将该 section 下的所有 option 及 option 所对应的值覆盖掉?
> >   Carambo, qutr at tjub.com.cn
> > 2005-5-12 
> > 
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn 
> > http://python.cn/mailman/listinfo/python-chinese
> > 
> > 
> > 
> 
> 
> -- 
> Qiangning Hong
> Get Firefox! <
> http://www.spreadfirefox.com/?q=affiliates&id=67907&t=1>
> >
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
茫茫人海,你是我的最爱
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050512/fd802ecf/attachment.htm

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

2005年05月12日 星期四 23:49

Qiangning Hong hongqn at gmail.com
Thu May 12 23:49:50 HKT 2005

ConfigParser内部是用dict保存数据的,dict是无序的。

On 5/12/05, 大熊 <bearsprite at gmail.com> wrote:
> 
> 我修改了一个ini中的某个项目的值,保存后打开发现,里面各个项目的顺序和原先不一样了,不知道是为什么?虽说不影响使用,但感觉有些别扭
> 
> 05-5-12,Qiangning Hong <hongqn at gmail.com> 写道: 
> > 
> > from ConfigParser import RawConfigParser
> > 
> > cfg = RawConfigParser()
> > cfg.read('whatever.ini')
> > cfg.remove_section('section_to_remove')
> > cfg.write(file('whatever.ini', 'w'))
> > 
> > On 5/12/05, Carambo < qutr at tjub.com.cn> wrote:
> > 
> > > python-chinese :
> > > 
> > > 大家好!
> > >  怎样删除已有.ini文件中的一个 section 和该 section 下的所有 option 及 option 所对应的值?
> > > 或者是怎样将该 section 下的所有 option 及 option 所对应的值覆盖掉?
> > >   Carambo, qutr at tjub.com.cn
> > > 2005-5-12 
> > > 
> > > _______________________________________________
> > > python-chinese list
> > > python-chinese at lists.python.cn 
> > > http://python.cn/mailman/listinfo/python-chinese
> > > 
> > > 
> > > 
> > 
> > 
> > -- 
> > Qiangning Hong
> > Get Firefox! <http://www.spreadfirefox.com/?q=affiliates&id=67907&t=1 
> > <http://www.spreadfirefox.com/?q=affiliates&id;=67907&t;=1>>
> > 
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn 
> > http://python.cn/mailman/listinfo/python-chinese
> > 
> > 
> > 
> 
> 
> -- 
> 茫茫人海,你是我的最爱 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
Qiangning Hong
Get Firefox! <
http://www.spreadfirefox.com/?q=affiliates&id=67907&t=1>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050512/dbf81fb9/attachment.html

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

2005年05月13日 星期五 09:01

Neo Chan neo.chen at achievo.com
Fri May 13 09:01:31 HKT 2005

刚才发现“大熊”兄弟的签名不错啊!!!!

“茫茫人海,你是我的最爱”

我来改一改:

 

人海茫茫,最爱你的是我。。。。哈哈。。。

  _____  

发件人: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn] 代表 大熊
发送时间: Thursday, May 12, 2005 11:01 PM
收件人: python-chinese at lists.python.cn
主题: Re: [python-chinese] Python中操作.ini文件的问题

 

我修改了一个ini中的某个项目的值,保存后打开发现,里面各个项目的顺序和原先不
一样了,不知道是为什么?虽说不影响使用,但感觉有些别扭

05-5-12,Qiangning Hong <hongqn at gmail.com> 写道: 

from ConfigParser import RawConfigParser

cfg = RawConfigParser()
cfg.read('whatever.ini')
cfg.remove_section('section_to_remove')
cfg.write(file('whatever.ini', 'w'))

On 5/12/05, Carambo < qutr at tjub.com.cn qutr at tjub.com.cn> > wrote:



python-chinese :

  大家好!

    

怎样删除已有.ini文件中的一个 section 和该 section 下的所有 option 及 option
所对应的值?

或者是怎样将该 section 下的所有 option 及 option 所对应的值覆盖掉?



 

 

 

Carambo, qutr at tjub.com.cn qutr at tjub.com.cn> 

2005-5-12 


_______________________________________________
python-chinese list
python-chinese at lists.python.cn 
http://python.cn/mailman/listinfo/python-chinese






-- 
Qiangning Hong
Get Firefox! <http://www.spreadfirefox.com/?q=affiliates
<http://www.spreadfirefox.com/?q=affiliates&id;=67907&t;=1>
&id=67907&t=1 >

_______________________________________________
python-chinese list
python-chinese at lists.python.cn  python-chinese at lists.python.cn> 
http://python.cn/mailman/listinfo/python-chinese






-- 
茫茫人海,你是我的最爱 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050513/4de72cc4/attachment.htm

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号