我导入了正则表达式库re。但是,调用re.fullmatch()
会导致此错误:
AttributeError: 'module' object has no attribute 'fullmatch'.
re.match()
可以工作。我确保没有re.py文件,并且我正在python版本3.7.3上运行
有任何建议的修复方法吗?
答案 0 :(得分:0)
请参阅此文档-https://docs.python.org/3/library/re.html#re.fullmatch
另外,请检查您的python版本是否支持re.fullmatch。
执行以下命令
import re
dir(re)
答案 1 :(得分:0)
已解决:我正在使用pytest,事实证明它正在使用python版本2,即使我在python版本3上运行。我需要使用pip3 install pytest重新安装pytest