| 12 | |
| 13 | |
| 14 | class 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 | |
| 20 | a = Employee() |
no outgoing calls
no test coverage detected