这个无效语法是怎么回事?
我有一个 python 模块,其中包含许多静态函数定义。然后最后我添加了一个类定义,但是解释器向我显示以下错误:
Traceback (most recent call last):
File "~/file.py", line 136
class InvalidPredicateError(Exception):
^
SyntaxError: invalid syntax
我根本没有看到这个问题。是因为我试图在静态模块中定义一个类吗?
I have a python module that consists of many function definitions, all static. Then at the end I added a class definition however, the interpreter presents me with the following error:
Traceback (most recent call last):
File "~/file.py", line 136
class InvalidPredicateError(Exception):
^
SyntaxError: invalid syntax
I don't see a problem with this at all. Is it because I'm trying to define a class in a static module?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
课前的行有错误。例如:
You have an error on the line(s) before the class. For example: