class Hero:
# class variable
jumlah = 0
__privateJumlah = 0
def __init__(self, name, health):
self.name = name
self.health = health
# variabel instance private
self.__private = "private"
# variabel instance protected
self._protected = "protected"
sisi = Hero("sisi", 100)
print (sisi.health)
print (Hero.__dict__)
print (Hero.__privateJumlah)
Tidak ada komentar:
Posting Komentar