慕移动6447889
2017-11-07 09:37
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()----不知道为什么这行报错
我再试试看
错误描述能写下吗?你的代码我复制运行,但是没有报错
Python文件处理
88454 学习 · 107 问题
相似问题