class_hint.py 93 B

12345678
  1. class Test:
  2. a:int
  3. def __init__(self, a):
  4. self.a = a
  5. t = Test(1)
  6. print(t.a)