2020
09-24
09-24
Python基于类路径字符串获取静态属性
一个python类,其类路径字符串是student.StudentclassStudent:name='admin'age=12通过如下方式就能获取到类的属性及其属性值importimportlib#类的全路径path='student.Student'p,c=path.rsplit('.',maxsplit=1)m=importlib.import_module(p)#类的clscls=getattr(m,c)#print(cls)#<class'student.Student'>forkeyindir(cls):ifnotkey.startswith('__'):print(key,getattr(cls,key))#age12;n...
继续阅读 >