class Test: a = 1 b = 'test' def __init__(self): a = 2 b = 'pewq' print(Test.a) print(Test.b)