class Const: def __init__(self, firstName, lastName): self.firstName = firstName def hello(self): print("hello world this is my sentence") c = Const("hello", "world") print(c.firstName) c.hello()