Commit 09a8d4dc by BellCodeEditor

auto save

parent 3acbce1d
Showing with 11 additions and 0 deletions
class Animal():
def __init__(self):
self.foot = 4 # 腿
self.color = "white"
self.weight = "10kg"
class Bird(Animal):
def __init__(self):
super().__init__()
self.foot = 5
self.weight="20kg"
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment