我是靠谱客的博主 健壮眼睛,最近开发中收集的这篇文章主要介绍TypeError: this constructor takes no arguments,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

from graphics import*
class child:
    def _init_(self,win,center,radius,color):
        self.w=win
        self.p=center
        self.r=radius
        self.c=color
    def show(self):
        c=Circle(self.p,self.r)
        c.setFill(self.c)
        c.draw(self.w)
    def setColor(self,color):
        self.c=color
        c.setFill(self.c)
       
from graphics import*
def main():
    w=GraphWin()
    A=child(w,Point(50,40),30,'blue')
    A.show()
    w.getMouse()
    w.close()
   
main()
#TypeError: this constructor takes no arguments

 

错误原因:

构造函数,是两个下划线,不是一个!

 

最后

以上就是健壮眼睛为你收集整理的TypeError: this constructor takes no arguments的全部内容,希望文章能够帮你解决TypeError: this constructor takes no arguments所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部