Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Created March 13, 2018 03:58
Show Gist options
  • Save jordanhudgens/84ed7b459559c337b16a10d19fe43f4c to your computer and use it in GitHub Desktop.
Save jordanhudgens/84ed7b459559c337b16a10d19fe43f4c to your computer and use it in GitHub Desktop.
class Website:
title = 'My site title'
ws = Website()
ws.title = 'Updated title'
print(ws.__dict__)
class SecondWebsite:
def __init__(self, title):
self.title = title
second_ws = SecondWebsite('Another Title')
print(second_ws.__dict__)
class Website:
title = 'My site title'
print(Website.title)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment