gpt4 book ai didi

python - 如何检测用户是否点击了 GraphWin 中的屏幕?

转载 作者:行者123 更新时间:2023-11-28 17:37:07 24 4
gpt4 key购买 nike

我正在尝试学习 Python。我需要这个循环一直滚动,直到我点击屏幕。

我尝试使用 win.getMouse 但它不起作用。

win = GraphWin("game of life", 600, 600)    
win.setCoords(-1, -3, s+1, s+1)

q = True
while q:
board = iterate(board)
x = 0
while x < s:
y = 0
while y < s:
update_color(x, y, board, rec)
y = y + 1
x = x + 1
if win.getMouse():
q = False

最佳答案

将 True 作为条件可确保代码一直运行,直到它被 n.strip() 等于 'hello' 中断为止。

while True:
n = raw_input("Please enter 'hello':")
if n.strip() == 'hello':
break

Python docs about while loop

关于python - 如何检测用户是否点击了 GraphWin 中的屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29337004/

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