Question: What is the purpose of the super() function in Python?
Answer: The super() function in Python returns a temporary object of the superclass, allowing you to call its methods. It is commonly used in inheritance to ensure that the superclass's methods are properly called.