我想导入re模块来进行一些Web抓取。
我写下了“ import re”功能,并收到以下消息:
Traceback (most recent call last):
File "/Users/willardsun/PycharmProjects/untitled/re.py", line 1, in <module><br>
import re<br>
File "/Users/willardsun/PycharmProjects/untitled/re.py", line 2, in <module><br>
re.compile<br>
AttributeError: partially initialized module 're' has no attribute 'compile' (most likely due to a circular import)
这到底是什么意思?我检查了二进制框架,没有重新模块。如果问题是由于此引起的,那么如何重新安装模块?谢谢。
答案 0 :(得分:1)
我认为您正在尝试在名为're.py'的.py文件中导入re模块。
这样会发生名称冲突。为什么不将.py文件的名称更改为my_re.py?