🛠️ Available Operators
| ▶ None-aware attribute access | a?.b |
_t.b if (_t := a) is not None else None |
|
| ▶ None-aware indexing | a?[b] |
_t[b] if (_t := a) is not None else None |
|
| ▶ None-coalesce | a ?? b |
_t if (_t := a) is not None else b |
|
| ▶ None-coalesce assignment | a ??= b |
if a is None: a = b |