Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Animal:
- name = "Antony"
- species = "Cat"
- limbs = 4
- dog = Animal()
- cat = Animal()
- # This DOES work (So why is this a "static" member)
- dog.limbs = 3
- # Actually makes sense
- Animal.limbs = 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement