报错self.cfg
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()----不知道为什么这行报错