Skip to content

Instantly share code, notes, and snippets.

@prashanth-sams
Created July 4, 2020 08:32
Show Gist options
  • Save prashanth-sams/0895adebf990b19413d8890251a00afd to your computer and use it in GitHub Desktop.
Save prashanth-sams/0895adebf990b19413d8890251a00afd to your computer and use it in GitHub Desktop.
Python snippets
class TestClass:
i = 0
@classmethod
def values(cls):
for k in range(5):
print(cls.incrementor())
@classmethod
def incrementor(cls):
cls.i += 1
return cls.i
TestClass.values()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment