机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
张昊翔
更新时间:
2023-12-24 15:29
浏览:
449次
点赞:
1次
热度:
20
class Bird(): def fly(self): print("我会飞") class Hen(Bird): def shout(self): print("咯咯哒") class Goose(Bird): def shout(self): print("嘎嘎嘎") muji=Hen() muji.fly() muji.shout() goose=Goose() goose.shout()
点赞成功
分享作品
×