Skip to content

Instantly share code, notes, and snippets.

@Abhayparashar31
Last active July 14, 2021 07:46
Show Gist options
  • Save Abhayparashar31/c4ff6d1ae0e71b76dc64345dd52f36e5 to your computer and use it in GitHub Desktop.
Save Abhayparashar31/c4ff6d1ae0e71b76dc64345dd52f36e5 to your computer and use it in GitHub Desktop.
class Employee:
def __init__(self,name,age,exp,salary):
self.name = name
self.age = age
self.exp = exp
self.salary = salary
class Developers(Employee):
def __init__(self,name,age,exp,salary,level):
super().__init__(name,age,exp,salary)
self.level = level
class Deginers(Employee):
def __init__(self,name,age,exp,salary,level):
super().__init__(name,age,exp,salary)
self.level = level
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment