假设您在分层“文件夹2”中有一个名为“模块”的模块,其中有一个名为“klass”的类。
我怎样才能得到方括号语法中的类?
module = __import__('folder1.folder2.module', fromlist='*')
sbs_module = module['klass']
#lets say we print a value from the method getValue
print sbs_module.getValue()
假设您在分层“文件夹2”中有一个名为“模块”的模块,其中有一个名为“klass”的类。
我怎样才能得到方括号语法中的类?
module = __import__('folder1.folder2.module', fromlist='*')
sbs_module = module['klass']
#lets say we print a value from the method getValue
print sbs_module.getValue()