摘要: class Geese: '''大雁类''' def __init__(self,beak,wing,claw): print("我是大雁类!我有以下特征:") print(beak) print(wing) print(claw) def fly(self,state): print(state) 阅读全文
posted @ 2022-10-27 14:02 Crushf 阅读(8) 评论(0) 推荐(0) 编辑