gpt4 book ai didi

Python turtle 程序在 IDLE 下工作,否则不工作

转载 作者:行者123 更新时间:2023-11-28 18:19:18 25 4
gpt4 key购买 nike

我在 Python 中使用 turtle 创建了一个简单的按钮程序。它很可能非常草率,但在 IDLE 中工作得很好。但是,当尝试在没有 IDLE 的情况下加载它时,它只会绘制两个按钮,然后退出程序。我查看了代码,但没有成功找到原因。

这是我认为的问题所在(最后几行):

def main():
onscreenclick(Button.clicked,1)

main()

不过我不是很确定。这是完整的程序以防万一。

from turtle import *
bgcolor('skyblue')
penup()
left(90)
speed(0)
hideturtle()
buttonlist = []

class Button:
x_click = 0
y_click = 0
def __init__(self, x, y, size, color, text, fontsize, fixvalue):
self.x = x
self.y = y
self.size = size
self.color = color
self.text = text
self.fontsize = fontsize
self.fixvalue = fixvalue
def showButton(self):
goto(self.x , self.y)
pendown()
fillcolor(self.color)
begin_fill()
for i in range(4):
forward(self.size)
right(90)
end_fill()
penup()
goto((self.x+self.size/2),self.y+self.fixvalue)
right(90)
write(self.text, move=False, align="center", font=("Arial", self.fontsize, "normal"))
left(90)
def hideButton(self):
goto(self.x, self.y)
fillcolor('skyblue')
pencolor('skyblue')
pendown()
begin_fill()
for i in range(4):
forward(self.size)
right(90)
end_fill()
penup()
pencolor('black')
def checkClick(self):
if self.x < Button.x_click:
if Button.x_click < (self.x+self.size):
if self.y < Button.y_click:
if Button.y_click < (self.y+self.size):
return 1

def clicked(x, y):
Button.x_click = x
Button.y_click = y

if home_1.checkClick() == 1:
home_1.hideButton()
if home_2.checkClick() == 1:
home_2.hideButton()

home_1 = Button(10,10,100,'red','←',45,20)
home_2 = Button(-50,-50,50,'blue','Hello!',10,15)
Button.showButton(home_1)
Button.showButton(home_2)

def main():
onscreenclick(Button.clicked,1)

main()

希望有解决办法

干杯。

最佳答案

你是对的,问题出在 main() 函数上,尝试在末尾添加一个 turtle.mainloop() 调用:

def main():
onscreenclick(Button.clicked,1)
mainloop()

main()

如果这对你不起作用,你也可以试试 turtle.done() 函数,尽管我建议你先试试 mainloop():

def main():
onscreenclick(Button.clicked,1)
done()

main()

关于Python turtle 程序在 IDLE 下工作,否则不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46239706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com