ID EN
Enum

__bool__(self):

Python 3.11

Returns True if any members in flag, False otherwise:

Syntax

PYTHON
__bool__(self):

Examples

Example 1
PYTHON
>>> bool(Color.GREEN)
True
>>> bool(white)
True
>>> black = Color(0)
>>> bool(black)
False