What does dunder mean in Python?
“dunder” is short for double underscore. In Python, files, function and variable names beginning (and ending) with two underscore are quite common. The ones you probably come across most often are the __init__ method and the __init__.py file. The term “dunder” is used when referring to these names in a conversation. Saying “the underscore underscore […]