摘要:
http://blog.csdn.net/navygong/archive/2009/08/20/4467471.aspx1. __call__、__getattr__ 1 class B(): 2 def __call__(self, name): 3 return getattr(self, name) 4 5 def a(self, text): 6 print 'a' + text 7 8 def b(self, text): 9 print 'b' + text 10 11 class A(): 12 def __getattr__(self, nam 阅读全文
摘要:
原文地址:http://hi.baidu.com/python23python模块之ConfigParser: 用python解析配置文件 在程序中使用配置文件来灵活的配置一些参数是一件很常见的事情,配置文件的解析并不复杂,在python里更是如此,在官方发布的库中就包含有做这件事情的库,那就是ConfigParser,这里简单的做一些介绍。ConfigParser解析的配置文件的格式比较象ini的配置文件格式,就是文件中由多个section构成,每个section下又有多个配置项,比如:[db]db_host=127.0.0.1db_port=3306db_user=rootdb_pass= 阅读全文