python 循环导入 &检查变量

发布于 2024-11-06 05:09:42 字数 382 浏览 0 评论 0原文

成功地在文件夹中导入了一堆模块

from assets import *

我已经使用“现在我想循环这些导入的模块并检查特定的变量或函数” 。我尝试使用 dir() 函数来获取导入模块的列表并查看它们,但是因为我正在循环遍历字符串数组,而不是技术上的模块数组,所以我无法查找模块变量。

for aModule in dir(assets):
    if word in aModule.alt:
        print "found it!"

如果 aModule.alt 中有单词:

属性错误:“str”对象没有属性“alt”

I've successfully imported a bunch of modules in a folder using

from assets import *

Now i want to loop through those imported modules and check for a specific variable or function. I tried to use dir() function to get a list of imported modules and look through them, but because i'm looping through an array of strings, instead of an array of modules technically, i can't lookup the module var.

for aModule in dir(assets):
    if word in aModule.alt:
        print "found it!"

if word in aModule.alt:

AttributeError: 'str' object has no attribute 'alt'

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

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

发布评论

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

评论(1

虐人心 2024-11-13 05:09:42

我认为你正在做的事情可以做得更简单:

import assets
for aModule in vars(assets).values():
    if hasattr(aModule, 'alt') and word in aModule.alt:
        print "found it!"
        print aModule.__name__

I think what you're doing could be done much more simply:

import assets
for aModule in vars(assets).values():
    if hasattr(aModule, 'alt') and word in aModule.alt:
        print "found it!"
        print aModule.__name__
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文