Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save msztolcman/b7f9e5876bb16376245f51d7248a6dc7 to your computer and use it in GitHub Desktop.
Save msztolcman/b7f9e5876bb16376245f51d7248a6dc7 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
class Test:
@classmethod
def test(cls, data=[]):
data.append(1)
print(data)
Test.test()
t = Test()
t.test()
Test.test()
t.test()
# result:
# [1]
# [1, 1]
# [1, 1, 1]
# [1, 1, 1, 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment