8.1 类的一般形式

class ren(object):
    '''this class is about ren class。类的说明,使用三个单引号'''
    name='菇凉'
    sex='Female'
    def hello(self):
        print('hello world')
a=ren()
print(type(a))
print(a.name)
print(a.sex)
a.hello()
a.name='未来啊'
print(a.name)

返回结果:

<class '__main__.ren'>

菇凉

Female

hello world

未来啊


上一篇:Oracle-数据伪列ROWNUM, ROWID


下一篇:参数-匿名函数-生成式-生成器-装饰器