gpt4 book ai didi

python - 如何在 __init__.py 中运行代码

转载 作者:太空宇宙 更新时间:2023-11-04 09:16:58 24 4
gpt4 key购买 nike

src/webprofiles/__init__.py 我有

def match(string)

现在我如何从包含

的`src/python.py调用这个匹配
from webprofiles import *

for x in text
a= webprofiles.match(x)

它给我一个错误

NameError: global name 'webprofiles' is not defined

最佳答案

当你使用 from import 形式时,你必须调用不带模块前缀的函数。只需通过名称调用函数和属性。

from webprofiles import *

for x in text:
a= match(x)

但我建议不要使用通配符 ('*') 导入。改用这个:

from webprofiles import match

for x in text:
a= match(x)

关于python - 如何在 __init__.py 中运行代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8147539/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com