I prefer (x is None) and (x is not None). This matches the SQL concept of NULL.
(X = NULL) is not valid since NULL is not a value and cannot be compared with anything. -- https://mail.python.org/mailman/listinfo/python-list
I prefer (x is None) and (x is not None). This matches the SQL concept of NULL.
(X = NULL) is not valid since NULL is not a value and cannot be compared with anything. -- https://mail.python.org/mailman/listinfo/python-list