为了账号安全,请及时绑定邮箱和手机立即绑定

运行的时候出现 NameError: name 'self' is not defined?

运行的时候出现 NameError: name 'self' is not defined?

尚方宝剑之说 2023-04-18 14:10:43
class Animal:    def __init__(self, animal):        self.animal = animal    def type(self, type=self.animal):         print type
查看完整描述

2 回答

?
温温酱

TA贡献1752条经验 获得超4个赞

如果打印的默认值非要设为self.animal的话,试试这样:

 class Animal(object):     def __init__(self,animal):
         self.animal = animal     def type(self,type=None):         print type if type else self.animal

你还需要了解一下self,在类中哪里可以访问得到self,哪里不可以!


查看完整回答
反对 回复 2023-04-21
?
千巷猫影

TA贡献1829条经验 获得超7个赞

方法参数的默认值是在函数定义的时候初始化的,而self指该class的实例化类,只有实例化之后才有值,因此这里编译出错(不是运行时错误)

查看完整回答
反对 回复 2023-04-21
  • 2 回答
  • 0 关注
  • 118 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信