[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/sofitech05/Source-Code-from-Tutorials/master/Python/32_python.py [Back]  [Original]

class Parent:
    
    def print_last_name(self):
        print('Roberts')
    

class Child(Parent):
    
    def print_first_name(self):
        print('Bucky')
    
    def print_last_name(self):
        print('Snitzleberg')

bucky = Child()
bucky.print_first_name()
bucky.print_last_name()

Web Proxy Viewer  |  New URL  |  Original Page