Skip to content

Instantly share code, notes, and snippets.

@kw-andy
Last active January 1, 2020 17:58
Show Gist options
  • Save kw-andy/72633bba98c6f7f59ea35d3da74d863e to your computer and use it in GitHub Desktop.
Save kw-andy/72633bba98c6f7f59ea35d3da74d863e to your computer and use it in GitHub Desktop.
class cptage:
def __init__(self,miaou):
self.miaou = miaou
def __len__(self):
return len(self.miaou)
compt = cptage([1,2,3,4,5])
print(len(compt))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment