Python中的 turtle.onrelease()函数
turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。
海龟.onrelease()
此函数用于将 fun 绑定到画布上此海龟上的鼠标按钮释放事件。
句法 :
turtle.onrelease(fun, btn=1, add=None)
参数:Arguments Description fun a function with two arguments, to which will be assigned the coordinates of the clicked point on the canvas. btn number of the mouse-button defaults to 1 (left mouse button). add True or False. If True, new binding will be added, otherwise, it will replace a former binding
下面是上述方法的一个例子的实现:
Python3
# import package
import turtle
# methods to action
def fxn1(x,y):
turtle.fillcolor("blue")
def fxn2(x,y):
turtle.fillcolor("white")
# set screen and turtle
sc=turtle.Screen()
sc.setup(400,300)
turtle.shape("turtle")
turtle.turtlesize(2)
turtle.speed(1)
# allow user to click for some action
turtle.onclick(fxn1)
# allow user to release for some action
turtle.onrelease(fxn2)
输出 :
在这里我们可以发现:
- 每当用户在海龟上单击(箭头上的黄色点)时,它就会变为蓝色,并且
- 从屏幕上释放(黄点消失)后,它变为白色。