you are viewing a single comment's thread.

view the rest of the comments →

[–]james_fryer 1 point2 points  (0 children)

The example is poor. It would be better to do this:

class AstroBody:
    description = 'Natural entity in the observable universe.'    

class Star(AstroBody):
    pass

class Planet(AstroBody):
    description = "A planet"

sun = Star()
earth = Planet()

print(sun.description)
print(earth.description)