super()

The super() function is used to call a method in a parent class from a subclass. This function takes two arguments, the subclass and the object, and returns a temporary object of the superclass, which allows for accessing of its methods. For example, super().__init__() would call the __init__() method of the superclass.