How can I use key-worded arguments so I will not repeatedly call the arguments from parent class using the super function?
class School(Students):
def __init__(self, name: str, age: int, gender: str):
super().__init__(name, age, gender)
How can I use key-worded arguments so I will not repeatedly call the arguments from parent class using the super function?
class School(Students):
def __init__(self, name: str, age: int, gender: str):
super().__init__(name, age, gender)