我不知道如何解决此错误。
也许在这行之前的某个地方有一个括号或引号?
此代码有什么问题?
Class Ribbon: # I got an error on this line!
def __init__(self, xpos, ypos, m, g):
self.x=xpos
self.y=ypos
self.mass=m
self.gravity=g
..
def update(self, xpos, ypos):
..
def display(self, xpos, ypos):
..
答案 0 :(得分:0)
这是您的问题:
Class Ribbon (object):
def __init__(self, xpos, ypos, m, g):
self.x=xpos
self.y=ypos
self.mass=m
self.gravity=g
还请记住,其他定义也必须正确缩进