python – 全局名称’re’未定义

前端之家收集整理的这篇文章主要介绍了python – 全局名称’re’未定义前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是新来的 python和在地图上工作减少问题与肉酱.运行mincemeat脚本时出现以下错误.
$python mincemeat.py -p changeme localhost
error: uncaptured python exception,closing channel <__main__.Client connected at 0x923fdcc> 
(<type 'exceptions.NameError'>:global name 're' is not defined
 [/usr/lib/python2.7/asyncore.py|read|79]
 [/usr/lib/python2.7/asyncore.py|handle_read_event|438] 
 [/usr/lib/python2.7/asynchat.py|handle_read|140]
 [mincemeat.py|found_terminator|96]
 [mincemeat.py|process_command|194]
 [mincemeat.py|call_mapfn|170]
 [raw1.py|mapfn|43])

我的代码放在raw1.py脚本中,在上面的stacktrace中给出了[raw1.py | mapfn | 43].

import re
import mincemeat

# ...

allStopWords = {'about':1,'above':1,'after':1,'again':1}

def mapfn(fname,fcont):
    # ...
    for item in tList[1].split():
        word = re.sub(r'[^\w]',' ',item).lower().strip()        # ERROR
        if (word not in allStopWords) and (len(word) > 1):
            # ....

我已经在raw1.py中导入了re.如果在mincemeat.py中导入re,则不会显示错误.

@H_404_11@解决方法
您需要在mapfn中具有import语句. mapfn在不同的python进程中执行,因此它无法访问它被声明的原始上下文(包括导入).
原文链接:https://www.f2er.com/python/186389.html

猜你在找的Python相关文章