TypeError:setCoords()缺少1所需的位置参数:' coords1'
我正在尝试上一堂课来绘制三角形,但显然是在第29行有一个我无法解决的问题。我在这里读了其他一些问题,但他们主要是关于“自我”的,这不是我的错误
def setcoords(self,coords1):
self.coords=coords1
triangle.setcoords(((100,100),(150,200),(200,100)))
print (triangle.givecoords())
triangle.setcolor((0,255,0))
triangle.setvisible(True)
triangle.draw()
I'm trying to do a class for drawing a triangle but apparently in line 29 there is a problem that i cant solve. I read some other question on here but they've been mainly about 'self' which is not my error
def setcoords(self,coords1):
self.coords=coords1
triangle.setcoords(((100,100),(150,200),(200,100)))
print (triangle.givecoords())
triangle.setcolor((0,255,0))
triangle.setvisible(True)
triangle.draw()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须创建实例对象:
类名称通常应使用capwords justminds undent undent undent,并具有构造函数(
__ init __ INT __
):You have to create an Instance Objects:
Class Names should normally use the CapWords convention and have a constructor (
__init__
):