class MyClass: def __init__(self, y): self.x = y def hello(self): print(self.x) def bye(self): print("bye")