🛠️ Available Operators

▶ None-aware attribute access a?.b _t.b if (_t := a) is not None else None
▶ None-aware subscript 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 assign a ??= b if a is None: a = b