Python question,
What's the cleanest way to call `__greet()` from inside the `run` method.
def __greet():
print("wtf")
class C:
def run(self):
__greet()
#Python#wtfpython
@withouttick@deepsource And another one that seems like a weird paradox at first (if you don't know about how `all` works in Python
>>> all([])
True
>>> all([[]])
False
>>> all([[[]]])
True
#Python#wtfpython