当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python turtle.onclick()用法及代码示例


turtle 模块以面向对象和面向过程的方式提供 turtle 图形基元。由于它使用Tkinter作为基础图形,因此需要安装有Tk支持的Python版本。

turtle .onclick()

此函数用于将乐趣绑定到此 turtle 或画布上的mouse-click事件。

用法:

turtle.onclick(fun, btn=1, add=None)

参数:

Arguments Description
fun 一个带有两个参数的函数,将为其分配画布上单击点的坐标
btn mouse-button的编号默认为1(鼠标左键)
add 对或错。如果为True,则将添加新的绑定,否则,它将替换以前的绑定

下面是上述方法的实现和一些示例:



范例1:

Python3

# import package 
import turtle 
  
  
# method to action 
def fxn(x,y):
      
    # some motion 
    turtle.right(90) 
    turtle.forward(100) 
  
# turtle speed to slowest 
turtle.speed(1) 
  
# motion 
turtle.fd(100) 
  
# allow user to click  
# for some action 
turtle.onclick(fxn)

输出:

范例2:

Python3

# import package 
import turtle 
  
  
# screen object 
wn = turtle.Screen() 
  
# method to perform action 
def fxn(x, y):
  turtle.goto(x, y) 
  turtle.write(str(x)+","+str(y)) 
  
# onclick action  
wn.onclick(fxn) 
wn.mainloop()

输出:




相关用法


注:本文由纯净天空筛选整理自deepanshu_rustagi大神的英文原创作品 turtle.onclick() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。