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

Class Employee

Chapter 11/04_super.py:1–4  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Employee:
2 def __init__(self):
3 print("Constructor of Employee")
4 a = 1
5
6class Programmer(Employee):
7 def __init__(self):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected