python 2.7 : 引用模块时出现TypeError:'module' object is not callable

Student.py文件:

#!/usr/bin/env python
# -*- coding: utf-8 -*-

'Student module'

__author__ = 'afei'


class Student(object):
    def __init__(self, name, score):
        self.name = name
        self.score = score

    def print_score(self):
        print "%s : %d" % (self.name, self.score)

引用模块:
import Student
st = Student('afei', 99)
st.print_score()

运行时出现  TypeError:'module' object is not callable
原因是Python引用模块方式有两种:
import module  使用时需加上模块名的限定
from module import *  直接使用没有限定

修改上述引用:
import Student
st = Student.Student('afei', 99)
st.print_score()
或者
from Student import *
st = Student('afei', 99)
st.print_score()
或者
from Student import Student
st = Student('afei', 99)
st.print_score()
出现Python错误TypeError: 'module' object is not callable,这意味着你试图将一个模块当作一个可调用的对象来使用。这通常是因为你使用了类似于模块名加括号的语法,例如module(),而模块本身并不是一个函数或可调用对象。要解决此错误,你需要检查你代码中的模块使用是否正确。确保你没有错误地将模块名当作函数或可调用对象来使用。你可以查看相关资料来了解更多关于模块和可调用对象的使用方式。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [python错误:TypeError: ‘moduleobject is not callable 解决方法](https://blog.csdn.net/qq_45816346/article/details/130684363)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] - *2* [Python 出现错误TypeError: ‘NoneType’ object is not iterable解决办法](https://download.csdn.net/download/weixin_38692202/12873827)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值