Skip to content

Instantly share code, notes, and snippets.

@calthoff
Created March 26, 2018 23:32
Show Gist options
  • Select an option

  • Save calthoff/8b542779cf636b330f38239212bf40e2 to your computer and use it in GitHub Desktop.

Select an option

Save calthoff/8b542779cf636b330f38239212bf40e2 to your computer and use it in GitHub Desktop.
class Shape():
def __init__(self, w, l):
self.width = w
self.len = l
def print_size(self):
print("""{} by {}""".format(self.width, self.len))
class Square(Shape):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment