class Foo: def __init__(self): self.fst = 1 self.snd = "hello" foo = Foo() print(foo.fst, foo.snd)