13 Oct
2022
13 Oct
'22
11:49 p.m.
class HelloWorld(object): def __init__(self, hello, world): self.words = (hello, world) def print(self): print(‘ ‘.join(self.words)) if __name__ == ‘__main__’: HelloWorld(‘hello’, ‘world).print()