This Pydon't walks you through the usages of the
__name__ dunder method and how to use it effectively.
The purpose of this Pydon't is to show you what underscores are used for in Python, and to show you how to write more idiomatic code with them.
In this Pydon't we will take a look at the reduce function,
which used to be a built-in function and is currently
in the functools module.
In this Pydon't we explore what Boolean short-circuiting
for the and and or operators is, and how to use this
functionality to write more expressive code.