MCPcopy Create free account
hub / github.com/CodeWithHarry/The-Ultimate-Python-Course / Programmer

Class Programmer

Chapter 11/04_super.py:6–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4 a = 1
5
6class Programmer(Employee):
7 def __init__(self):
8 print("Constructor of Programmer")
9 b = 2
10
11class Manager(Programmer):
12 def __init__(self):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected