0
讓我們假設你有一個名爲「module」的模塊在僱傭主體「folder2」中,並且有一個名爲「klass」的類。如何從Python中的前一個__import__中獲取類對象/實例?
我怎樣才能得到像方括號語法的類?
module = __import__('folder1.folder2.module', fromlist='*')
sbs_module = module['klass']
#lets say we print a value from the method getValue
print sbs_module.getValue()
我做到了按屬性: 模塊= __import __( 'folder1.folder2.module',fromlist裏= '*') 克拉斯= GETATTR(模塊, '克拉斯') 打印klass.getValue() 和它的工作, 謝謝。 – Uuid