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

Class Programmer

Chapter 11/02_multiple_inheritance.py:14–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12
13
14class Programmer(Employee, Coder):
15 company = "ITC Infotech"
16 def showLanguage(self):
17 print(f"The name is {self.company} and he is good with {self.language} language")
18
19
20a = Employee()

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected