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()
Undescribed Horrific Abuse, One Victim & Survivor of Many Thu, 13 Oct 2022 16:50:23 -0700
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()