“Warisan dalam Contoh Python 3” Kode Jawaban

Warisan dalam Contoh Python 3

class Robot:
    
    def __init__(self, name):
        self.name = name
        
    def say_hi(self):
        print("Hi, I am " + self.name)
        
class PhysicianRobot(Robot):

    def say_hi(self):
        print("Everything will be okay! ") 
        print(self.name + " takes care of you!")

y = PhysicianRobot("James")
y.say_hi()
Foolish Finch

Warisan dalam Contoh Python 3

class Robot:
    
    def __init__(self, name):
        self.name = name
        
    def say_hi(self):
        print("Hi, I am " + self.name)
        
class PhysicianRobot(Robot):
    pass

x = Robot("Marvin")
y = PhysicianRobot("James")

print(x, type(x))
print(y, type(y))

y.say_hi()
Foolish Finch

Warisan dalam Contoh Python 3

<__main__.Robot object at 0x7fd0080b3ba8> <class '__main__.Robot'>
<__main__.PhysicianRobot object at 0x7fd0080b3b70> <class '__main__.PhysicianRobot'>
Hi, I am James
Foolish Finch

Jawaban yang mirip dengan “Warisan dalam Contoh Python 3”

Pertanyaan yang mirip dengan “Warisan dalam Contoh Python 3”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya