我一直得到“NameError:name're'未定义”,即使我已经在我的代码中导入了re和在library_s19_week2.py中定义的内置函数pat_count()
。我尝试了所有可能的地方进口re但似乎没有工作。请帮忙!
我的代码:
import re
hash_pat = re.compile(r'#\w+')
hash_counter = pat_count(hash_pat)
tweet_table['hash_count'] = tweet_table.apply(lambda row: hash_counter(row['tweet']), axis=1)
回溯错误:
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-93-1880eb903ae9> in <module>()
10
11 hash_pat = re.compile(r'#\w+')
---> 12 hash_counter = pat_count(hash_pat)
13 tweet_table['hash_count'] = tweet_table.apply(lambda row: hash_counter(row['tweet']), axis=1)
14
/content/library_s19_week2.py in pat_count(pattern)
95 def pat_count(pattern):
96 import re
---> 97
98 pat = re.compile(pattern)
99
NameError: name 're' is not defined
我发现了我的错误:hash_pat = re.compile(r'#\w+')
应该是hash_pat = r'#\w+
。
正如追溯中的pat_count()
函数所示,hash_pat
是re.compile()
的输入。