鱼C论坛

 找回密码
 立即注册
查看: 2063|回复: 4

[已解决]零基础入门python:038讲类和对象,继承

[复制链接]
发表于 2021-1-26 16:09:29 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 一条胖咸鱼鸭 于 2021-1-26 16:14 编辑

按照课程的代码,运行出来,在实例化的时候报错了,小白,不太清楚是为什么,求解答
输入:
fish = Fish()
之后报错:
TypeError: randint() missing 1 required positional argument: 'b'
代码如下:
import random as r


class Fish:
    def __init__(self):
        self.x = r.randint(0.10)
        self.y = r.randint(0,10)

    def move(self):
        self.x -= 1
        print('我的位置是:',self.x,self.y)


class Goldfish(Fish):
    pass

class Garp(Fish):
    pass

class Salmon(Fish):
    pass

class Shark(Fish):
    def __init__(self):
        self.hungry = True
    def eat(self):
        if self.hungry:
            print('吃货的梦想就是天天有的吃!')

        else:
            print('太撑了,吃不下了!')
        
        
最佳答案
2021-1-26 16:15:23
第六行,逗号写成点了
import random as r


class Fish:
    def __init__(self):
        self.x = r.randint(0,10)
        self.y = r.randint(0,10)

    def move(self):
        self.x -= 1
        print('我的位置是:',self.x,self.y)


class Goldfish(Fish):
    pass

class Garp(Fish):
    pass

class Salmon(Fish):
    pass

class Shark(Fish):
    def __init__(self):
        self.hungry = True
    def eat(self):
        if self.hungry:
            print('吃货的梦想就是天天有的吃!')

        else:
            print('太撑了,吃不下了!')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-1-26 16:15:23 | 显示全部楼层    本楼为最佳答案   
此帖仅作者可见
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com

使用道具 举报

发表于 2021-1-26 16:17:38 | 显示全部楼层
此帖仅作者可见
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com

使用道具 举报

 楼主| 发表于 2021-1-26 16:20:30 | 显示全部楼层
此帖仅作者可见
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com

使用道具 举报

 楼主| 发表于 2021-1-26 16:22:54 | 显示全部楼层
此帖仅作者可见
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 16:44

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表