How-to articles, tricks, and solutions about NONETYPE
not None-Test in Python
In Python kann man überprüfen, ob eine Variable nicht gleich "None" ist, indem man den is not -Operator verwendet.
Python `if x is not None` oder `if not x is None`?
Die richtige Art, in Python zu überprüfen, ob eine Variable x nicht None ist, besteht darin, if x is not None zu verwenden.