码迷,mamicode.com
首页 > 编程语言 > 详细

[python]一个低级错误/xxx instance has no attribute 'xxx'/'module' object is not callable

时间:2014-08-15 17:37:29      阅读:344      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   文件   for   div   代码   

今天在写代码的时候出现了以下两个错误:

TypeError: ‘module‘ object is not callable

AttributeError: excelChange instance has no attribute xlBook

上网一查,发现第一个错误是由于python中有两种不同的引用方式 import xxx 和 from xxx import *,前者在代码中引用时需要加上模块名和具体的方法或属性,具体方法如下:

import catchForm

self.xls = catchForm.catchForm()

而from xxx import *则可以直接引用:

from catchForm import *

self.xls = catchForm()

 

 

解决完第一个错误后,马上又遇到了第二个错误,百思不得其解,我的代码如下:

class excelChange:
    """一个win32com的封装类,将其所有方法封装在内,
                        统一调用
    """
    def _init_(self,filename = None):#传入文件名参数,如果有的话,没有就把None赋值给filename,自个再新建一个
        self.xlApp = Dispatch(‘Excel.Application‘)
        if filename:
            self.filename = filename
            self.xlBook = self.xlApp.Workbooks.Open(filename)
        else:
            self.xlBook = self.xlApp.Workbooks.Add()
            self.filename = ‘‘

我一看,xlBook这不有吗,为啥报错呢,最后上网一查发现:

我的_init_写错了,正确的写法应该是__init__,有两个下划线=。=

囧rz

总结:代码还是得常写啊=。=尤其是在一个领导盲目相信自动化(认为自动化就是全能)的公司,到时候交不出东西就完了。

[python]一个低级错误/xxx instance has no attribute 'xxx'/'module' object is not callable,布布扣,bubuko.com

[python]一个低级错误/xxx instance has no attribute 'xxx'/'module' object is not callable

标签:style   blog   color   io   文件   for   div   代码   

原文地址:http://www.cnblogs.com/yuexizhuo/p/3915275.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!