trick | python-getattr
import os getattr(os, "getcwd")()
相当于
import os os.getcwd()
好菜啊…我这样子就可以不通过.来调用对象方法了
.