码迷,mamicode.com
首页 > 编程语言 > 详细

Python之对象的属性

时间:2015-11-06 23:36:28      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

# -*- coding: utf-8 -*-
#python 27
#xiaodeng
#Python之对象的属性
#http://python.jobbole.com/82622/


#对象的属性

class bird():
    feather = True
 
class chicken(bird):
    fly = False
    def __init__(self,age):
        self.age = age


summer = chicken(2)
print(bird.__dict__)
print(chicken.__dict__)
print(summer.__dict__)
‘‘‘
{‘__module__‘: ‘__main__‘, ‘feather‘: True, ‘__doc__‘: None}
{‘fly‘: False, ‘__module__‘: ‘__main__‘, ‘__doc__‘: None, ‘__init__‘: <function __init__ at 0x02042AB0>}
{‘age‘: 2}
‘‘‘

 

Python之对象的属性

标签:

原文地址:http://www.cnblogs.com/dengyg200891/p/4943913.html

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