Which of the following can be used to invoke the __init__ method in X form Y, where Y is a subclass of X in Python 3.x?

Questions & AnswersCategory: PythonWhich of the following can be used to invoke the __init__ method in X form Y, where Y is a subclass of X in Python 3.x?
Geek Boy Staff asked 2 years ago

Which of the following can be used to invoke the __init__ method in X form Y, where Y is a subclass of X in Python 3.x?
a. super().__int__(self)
b. super().__init__()
c. X.__init__(self)
d. X.__init__()