Commit 0459ed5d by BellCodeEditor

save project

parent 57b76404
Showing with 11 additions and 0 deletions
class Animal():
def __init__(self):
self.foot = 4
self.colpor = "white"
self.weight = "10kg"
class Bird(Animal):
def __init__(self):
super().__init__()
self.foot = 2
self.weight = "2kg"
\ 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