I've got a complex object graph which I need to initialise.
If I doing this in VB.Net, I'd do...
Dim Blah = New A With {
.B = New C With {.D = New E},
.F = New G }
In Python, I'm currently doing...
Blah = A()
Blah.B = C()
Blah.B.D = E()
Blah.F = G()
...
Is there a less verbose way of doing this?