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

Python

时间:2014-06-27 20:17:22      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color      

1、类、子类与函数定义: 

class Animal(object): # object 继承object类。
    Paw=True
    Age=1
    def Eat(self,a):
        print(a)

class Tiger(Animal): # object 继承Animal类。
Address="Forest"

 2、初始化函数_init_

class User(object):
    Name="aa"
    def __init__(self):
        self.Name="b"

 

Python,布布扣,bubuko.com

Python

标签:style   class   blog   code   color      

原文地址:http://www.cnblogs.com/tyb1222/p/3809628.html

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