super class
Anonymous
python
12/20/2023 10:00 PM
452 B
15
Indexable
class Murid:
def __init__(self):
self.num_eyes = 2
def kegiatan(self):
print("rebahan")
class RakyatGaperi(Murid):
def __init__(self):
super().__init__()
def kegiatan(self):
super().kegiatan()
print("coli ngengggggg")
fahri = RakyatGaperi()
fahri.kegiatan()Editor is loading...
Leave a Comment