📜  如何在Python Turtle 中获取屏幕坐标?

📅  最后修改于: 2022-05-13 01:55:31.009000             🧑  作者: Mango

如何在Python Turtle 中获取屏幕坐标?

Turtle 是Python中的一个特殊功能,它包含一个图形库。在本文中,我们将学习如何在Python Turtle 中获取屏幕坐标。

Turtle 有许多内置函数来创建我们使用的这个程序。

Python3
# turtle library
import turtle
 
#This to make turtle object
tess=turtle.Turtle() 
 
# self defined function to print coordinate
def buttonclick(x,y):
    print("You clicked at this coordinate({0},{1})".format(x,y))
 
 #onscreen function to send coordinate
turtle.onscreenclick(buttonclick,1)
turtle.listen()  # listen to incoming connections
turtle.speed(10) # set the speed
turtle.done()    # hold the screen


输出:

上面的输出显示坐标是在屏幕上指针点击的地方打印的