欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

AttributeError: module 'ast' has no attribute 'parse'

程序员文章站 2024-03-25 13:34:52
...

死活查不出来,写了一个ast报这个错。

Traceback (most recent call last):
  File "C:\Users\HP\Desktop\ast.py", line 13, in <module>
    res = sc(path)
  File "C:\Users\HP\Desktop\ast.py", line 8, in sc
    ex = ast.parse(res,filename=path,mode = 'exec')
AttributeError: module 'ast' has no attribute 'parse'

终于还是被我发现了,猫腻原来在这里——命名问题。

AttributeError: module 'ast' has no attribute 'parse'

这个文件的命名为ast.py,报错,改个名字,ast1.py,一切正常。

AttributeError: module 'ast' has no attribute 'parse'

相关标签: python ast