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

不知道换种写法有啥区别


#    __slots__ = ('name','gender','score') # 父类的属性加不加有啥区别

    __slots__ = ('score',) #逗号加不加没有区别


    def __init__(self,name,gender,score):

#        super(Student,self).__init__(name,gender) #这个忘了,前面讲过吗

#        self.name = name      #父类的属性要不要在做一遍

#        self.gender = gender #父类的属性要不要在做一遍

        self.score = score


正在回答

1 回答

>>> ('abc')

'abc'

>>> type('abc')

<type 'str'>

>>> type('abc',)

<type 'str'>

>>> type(('abc'))

<type 'str'>

>>> type(('abc',))

<type 'tuple'>

>>> 


1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

不知道换种写法有啥区别

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信