Let's Mangle

We'll cover the following...

Typically, we would discourage it, but for now, let’s mangle.

1.

Why does the following code throw an error?
Press + to interact
class Yo(object):
def __init__(self):
self.__honey = True
self.bro = True
print(Yo().bro)
print(Yo()._Yo__honey)
print(Yo().__honey) # Throws error

2.

...