python只引入模块并不能直接调用该模块的函数

如下图:
python只引入模块并不能直接调用该模块的函数_第1张图片
这里只引入了recognizer模块,没有直接引入其函数,会报错name 'XXX' is not defined
若想频繁使用某个函数,可以将它赋值给一个本地变量
如:

predict = recognizer.predict
clean_captcha = recognizer.clean_captcha
get_captcha = recognizer.get_captcha

python只引入模块并不能直接调用该模块的函数_第2张图片

你可能感兴趣的:(python)