raise Exception("[formula] found unexpected NAME token (%r)" % name_tok.txt) AttributeError: 'CommonToken' object has no attribute 'txt'. Did you mean: 'text'?
时间: 2023-06-19 12:34:41 浏览: 67
JS提示:Uncaught SyntaxError:Unexpected token ) 错误的解决方法
这个错误可能是由于代码中使用了过期的方法或属性导致的。`txt` 属性已经被替换为 `text` 属性,因此您可以尝试将代码中的 `txt` 替换为 `text`,看看是否能够解决问题。例如,将 `name_tok.txt` 改为 `name_tok.text`。如果这样做无法解决问题,请提供更多的上下文和代码,以便我能够更好地帮助您。
阅读全文