问答详情
源自:4-1 文件练习

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

提问者:慕移动6447889 2017-11-07 09:37

个回答

  • 慕移动6447889
    2017-11-09 12:27:50

    我再试试看

  • qq_小飞侠_14
    2017-11-09 12:01:02

    错误描述能写下吗?你的代码我复制运行,但是没有报错