码迷,mamicode.com
首页 > 其他好文 > 详细

8.1 类的一般形式

时间:2017-11-10 12:42:23      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:类的一般形式

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

未来啊


8.1 类的一般形式

标签:类的一般形式

原文地址:http://shaoniana.blog.51cto.com/11471609/1980560

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