Python实现ini文件操作基本操作方式分享

开发 后端
我们今天将会在这里为大家详细介绍一下有关Python实现ini文件操作的应用方式,希望大家可以通过我们给出的代码示例充分掌握这一操作技术。

Python编程语言对于开发人员来说是一个应用非常广泛,功能强大的应用语言。其独特的功能特点能够帮助我们轻松的完成各种功能需求。在这里我们一起来看看Python实现ini文件操作的相关应用方式。

Python实现ini文件操作代码示例:

  1. # -*- coding:gbk -*-  
  2. import ConfigParser, os  
  3. class INIFILE:  
  4. def __init__(self, filename):  
  5. self.filename = filename  
  6. self.initflag = False 
  7. self.cfg = None 
  8. self.readhandle = None 
  9. self.writehandle = None 
  10. def Init(self):  
  11. self.cfg = ConfigParser.ConfigParser()  
  12. try:  
  13. self.readhandle = open(self.filename, 'r')  
  14. self.cfg.readfp(self.readhandle)  
  15. self.writehandle = open(self.filename, 'w')  
  16. self.initflag = True 
  17. except:  
  18. self.initflag = False 
  19. return self.initflag  
  20. def UnInit(self):  
  21. if self.initflag:  
  22. self.readhandle.close()  
  23. self.writehandle.closse()  
  24. def GetValue(self, Section, Key, Default = ""):  
  25. try:  
  26. value = self.cfg.get(Section, Key)  
  27. except:  
  28. value = Default 
  29. return value  
  30. def SetValue(self, Section, Key, Value):  
  31. try:  
  32. self.cfg.set(Section, Key, Value)  
  33. except:  
  34. self.cfg.add_section(Section)  
  35. self.cfg.set(Section, Key, Value)  
  36. self.cfg.write(self.writehandle) 

Python实现ini文件操作的相关应用方式就为大家介绍到这里。

【编辑推荐】

  1. Python构造列表基本应用语法详解
  2. 利用PDB实现Python程序调试
  3. Python单元测试正确使用规则
  4. Python SQLITE数据库操作简便易用
  5. 编写Python程序实现行数统计
责任编辑:曹凯 来源: 博客园
相关推荐

2010-03-03 13:45:08

Python查找重复文

2010-03-03 16:57:28

Python字符

2010-03-05 09:33:05

Python实现tab

2024-10-11 12:00:00

Python批量文件操作

2010-03-03 16:40:55

Python HTTP

2010-03-03 10:10:33

Python实现Soc

2009-08-28 15:49:45

C#对INI文件操作

2019-11-19 11:20:25

Python数据结构Windows

2009-12-16 11:04:51

Ruby操作文件权限

2009-09-17 10:40:23

linq存储过程

2010-03-04 13:47:13

Python操作Acc

2010-01-07 11:07:20

VB.NET读取INI

2010-05-11 09:41:56

MySQL基本操作

2010-03-04 09:58:32

安装Python

2016-10-13 19:16:28

Python编程语言mysql

2010-01-15 19:04:09

2009-10-28 13:24:25

VB.NET文件

2021-02-19 08:05:38

Linux命令系统

2011-01-11 14:56:51

Linux基本操作

2021-06-18 06:31:55

PyTorchPython深度学习
点赞
收藏

51CTO技术栈公众号