Skip to content

Instantly share code, notes, and snippets.

@JackInTaiwan
Created October 17, 2018 15:43
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 JackInTaiwan/99412d1ff5ff0cec89468f34ba54a320 to your computer and use it in GitHub Desktop.
Save JackInTaiwan/99412d1ff5ff0cec89468f34ba54a320 to your computer and use it in GitHub Desktop.
class Shiba:
pee_length = 10
def __init__(self, height, weight):
self.height = height
self.weight = weight
@staticmethod
def pee():
print("pee" + "." * pee_length)
# Error > NameError: name 'pee_length' is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment