python 循环导入 &检查变量
成功地在文件夹中导入了一堆模块
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你正在做的事情可以做得更简单:
I think what you're doing could be done much more simply: