Created
June 27, 2019 05:19
-
-
Save msztolcman/b7f9e5876bb16376245f51d7248a6dc7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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