What is ‘Dunder init’? Dunder is ‘Double under(score)’ is one of the special method in Python. As you can see this method got two underscores at beginning and the end of the method name (init). This dunder init is kind of ‘constructor’ from other object oriented programming languages. When a new instance of a PythonContinue reading “Random Python Question #7”