python 面对对象的一个文字游戏

import random as r

class Fish:
    def __init__(self) :						#init 相当于 调用了这个类 就会默认执行这个函数
        self.x = r.randint(0, 10)
        self.y = r.randint(0, 10)

    def move(self):
        self.x += 1
        self.y += 1
        print('您的位置是',self.x, ',', self.y)
class Goldfish(Fish):
    pass
class Sanwenfish(Fish):
    pass

class Shark(Fish):								#子类继承了父对象
    def __init__(self):
        super().__init__()						#调用父类的一个方法
    def hungry(self):
        self.hungry = True

    def eat(self):
        if self.hungry == True:
            print('有东西吃真好')
            self.hungry = False
        else:
            print('我饱了,但是我还想吃')

你可能感兴趣的:(python 面对对象的一个文字游戏)