Various places to declare Static variables.
Rohit Shrimangle
?? Hi, I’m @rohit shrimangle ?? I’m interested in Data Science jobs ?? I’m currently learning Snowflake ?? I’m looking to collaborate on Data Science projects ?? How to reach me you've successfully found me on LinkedIn
class Test:
a=10
def __init__(self):
Test.b=20
def m1(self):
Test.c=30
@classmethod
def m2(cls):
cls.d1=40
Test.d2=400
@staticmethod
def m3():
Test.e=50
print(Test.__dict__)
t=Test()
print(Test.__dict__)
t.m1()
print(Test.__dict__)
t.m2()
print(Test.__dict__)
t.m3()
print(Test.__dict__)
Test.f=60
print(Test.__dict__)