根据变量从模块导入类

发布于 2025-01-09 18:43:13 字数 364 浏览 0 评论 0原文

我的模块中有多个类,我想根据字符串变量导入它们。

class firstPRODUCT():
    pass
class secondPRODUCT():
    pass

在另一个模块中,我有字符串变量,可以是(“第一”或“第二”或更多), 我想导入类字符串+“产品”,(如果字符串=“第一”导入第一个产品类,等等)。有没有办法在 python 中做到这一点?尝试使用全局变量,但这是语法错误。

string = "first"
from .work import(
    globals()[string+PRODUCT],
    my_func,
    my_other_func,
)

I have multiple classes in module and I want to import them depending on string variable.

class firstPRODUCT():
    pass
class secondPRODUCT():
    pass

In another module I have string variable which can be("first" or "second" or more),
I want to import class string+"PRODUCT", (if string="first" import firstPRODUCT class, etc). Is there a way to do that in python? Tried with globals but it is syntax error.

string = "first"
from .work import(
    globals()[string+PRODUCT],
    my_func,
    my_other_func,
)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只想待在家 2025-01-16 18:43:13

一种解决方案是导入模块并使用 getattr< /a> 通过名称访问您想要的类。

from . import work

string = "first"
foo = getattr(work, f'{string}PRODUCT')

One solution is to import the module and use getattr to access the class you want by name.

from . import work

string = "first"
foo = getattr(work, f'{string}PRODUCT')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文