В PHP есть такой список всего, что понимается интерпретатором как boolean false:
the boolean FALSE itself
the integer 0 (zero)
the float 0.0 (zero)
the empty string, and the string "0"
an array with zero elements
the special type NULL (including unset variables)
SimpleXML objects created from empty tags
Every other value is considered TRUE (including any resource)
А как это называется в Питоне и где найти такой список? Чтобы знать какие значения, возвращаемые функциями, понимаются как boolean false.