Explanation:
The correct answers are:
A. the constructor is a method named __init__
In Python, the constructor method is always named __init__.
It is automatically called when a new instance of a class is created.
Example: class Example: def __init__(self, value): self.value = value obj = Example(10) # Automatically calls __init__
D. the constructor must have at least one parameter
The __init__ method must have at least one parameter, typically self, which refers to the instance being created.
upvoted 1 times
...
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
flthymcnsty
1 month ago