Skip to main content

is_none

No overview available.

def is_none(
val: any
) - > boolean

Checks if a given value is None. This utility is typically used for explicit null-checking in conditional logic.

Parameters

NameTypeDescription
valanyThe object or value to be evaluated for a null reference

Returns

TypeDescription
booleanTrue if the input value is None, False otherwise