Home  >  Q&A  >  body text

python - py怎么语言那么繁琐啊搞那多参数啊 变量啊 函数啊 特别是每次为什么都有个self 纠结

现在要定义一个类,一个水池,水池里要有乌龟和鱼。
class Turtle:

def __init__(self,x):
    self.num=x

class Fish:

def __init__(self,x):
    self.num=x

class Pool:

def __init__(self,x,y):
    self.turtle=Turtle(x)
    self.fish=Fish(y)

def print_num(self):
    print('水池里总共有乌龟%d只,小鱼%d 条!'%(self.turtle.num,self.fish.num))

pool=Pool(1,10)
pool.print_num()
水池里总共有乌龟1只,小鱼10 条!
x、y不就分别对应乌龟跟鱼的数量吗?搞那多参数啊 变量啊 函数啊 人都搞晕 看的晕 更不会自己敲了

巴扎黑巴扎黑2765 days ago642

reply all(1)I'll reply

  • 迷茫

    迷茫2017-04-18 10:24:40

    This example is just to teach you the basic object-oriented concepts, not how to use itprint.

    reply
    0
  • Cancelreply