AttributeError:“模块”对象没有属性“完全匹配”

时间:2019-07-29 17:55:18

标签: python-3.x

我导入了正则表达式库re。但是,调用re.fullmatch()会导致此错误:

AttributeError: 'module' object has no attribute 'fullmatch'.

re.match()可以工作。我确保没有re.py文件,并且我正在python版本3.7.3上运行

有任何建议的修复方法吗?

2 个答案:

答案 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