trick | python-getattr

Author Avatar
Aryb1n 5月 30, 2017
import os
getattr(os, "getcwd")()

相当于

import os
os.getcwd()

好菜啊…我
这样子就可以不通过.来调用对象方法了