Skip to content

Instantly share code, notes, and snippets.

@filipecifali
Created February 26, 2018 18:46
Show Gist options
  • Save filipecifali/0eec5b86884971f27ed33157fb7aa291 to your computer and use it in GitHub Desktop.
Save filipecifali/0eec5b86884971f27ed33157fb7aa291 to your computer and use it in GitHub Desktop.
>>> class Doggo:
... def __init__(self):
... self.good_doggo = True
...
>>> Shibe = Doggo()
>>> if Shibe.good_doggo:
... print("Shibe is a good doggo")
...
Shibe is a good doggo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment