Is there a null propagation operator ("null-aware member access" operator) in Python so I could write something like
var = object?.children?.grandchildren?.property
as in C#, VB.NET and TypeScript, instead of
var = None if not myobject\
or not myobject.children\
or not myobject.children.grandchildren\
else myobject.children.grandchildren.property