import os import os.path import ConfigParser class student_info(object): def __init__(self,recordfile): self.logfile=recordfile self.cfg=ConfigParser.ConfigParser() def cfg_load(self): self.cfg.read(self.logfile) def cfg_dump(self): se_list=self.cfg.sections() print "====================>" for se in se_list: print se print self.cfg.items(se) print "====================>"
self.cfg=ConfigParser.ConfigParser()----不知道为什么这行报错
我再试试看
错误描述能写下吗?你的代码我复制运行,但是没有报错