python获取连续属性

1、 

getattr(getattr(a, "b"), "c")

2、

import operator

operator.attrgetter("b.c")(a)

你可能感兴趣的:(python获取连续属性)