报错self.cfg

来源:4-1 文件练习

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

写回答 关注

2回答

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

    我再试试看

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

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

    慕移动644...

    IndentationError:unexpected indent

    2017-11-09 12:30:21

    共 2 条回复 >

Python文件处理

Python文件操作指南,掌握os模块对文件和目录的处理

88454 学习 · 107 问题

查看课程

相似问题