Skip to content

Instantly share code, notes, and snippets.

@drc288
Last active October 8, 2019 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drc288/88a1ade967ba126499f60eb546781142 to your computer and use it in GitHub Desktop.
Save drc288/88a1ade967ba126499f60eb546781142 to your computer and use it in GitHub Desktop.
Example DogClass for medium
class DogClass:
""" Public class attribute """
ca_woff = "Woff!"
def __init__(self, ia_woff):
""" Instance attribute """
self.ia_woff = ia_woff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment