摘要: 教为学:Python学习之路(六):类类与对象通俗点说类是定义,对象是实体。简单点说人是类,高鹏我是对象。属性属性有实例属性和类属性之分。先上一段代码看看:class Fruit: price = 0 def __init__(self): self.color='red' zone="china" if __name__=="__main__": print "Fruit price:%d"%Fruit.price apple = Fruit() print "apple color:%s"%ap 阅读全文
posted @ 2013-06-08 18:00 教为学 阅读(1085) 评论(3) 推荐(2)