How to Get Coordinate Of Screen in Python Turtle ? Last Updated : 21 Jun, 2022 Comments Improve Suggest changes Like Article Like Report Turtle is a special feature in python which contains a graphical library. In this article we will learn how to Get Coordinate Of Screen in Python Turtle. Turtle has many built in function to create this program we use following. import turtle --> This is the python library which allow us to access turtle library. Turtle()--> This Method is used to make object. onscreenclick(functionname,1) --> This is turtle function which sends the coordinate to function; 1 is for left click and 3 is for Right click speed()--> This is used to increase or decrease the speed of turtle pointer. listen()--> This allows the server to listen to incoming connections. done()--> This is used to hold the screen. 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 Output:Above Output shows that coordinates are print where pointer clicks on the Screen Comment More infoAdvertise with us Next Article Must Coding Questions - Company-wise S sunnyyadav1309 Follow Improve Article Tags : Python Python Programs Python-turtle Practice Tags : python Similar Reads Interview PreparationInterview Preparation For Software DevelopersMust Coding Questions - Company-wise Must Do Coding Questions - Topic-wiseCompany-wise Practice ProblemsCompany PreparationCompetitive ProgrammingSoftware Design-PatternsCompany-wise Interview ExperienceExperienced - Interview ExperiencesInternship - Interview ExperiencesPractice @GeeksforgeeksProblem of the DayTopic-wise PracticeDifficulty Level - SchoolDifficulty Level - BasicDifficulty Level - EasyDifficulty Level - MediumDifficulty Level - HardLeaderboard !!Explore More...Data StructuresArraysLinked ListStackQueueBinary TreeBinary Search TreeHeapHashingGraphAdvance Data StructuresMatrixStringAll Data StructuresAlgorithmsAnalysis of AlgorithmsSearching AlgorithmsSorting AlgorithmsPattern SearchingGeometric AlgorithmsMathematical AlgorithmsRandomized AlgorithmsGreedy AlgorithmsDynamic ProgrammingDivide & ConquerBacktrackingBranch & BoundAll AlgorithmsProgramming LanguagesCC++JavaPythonC#Go LangSQLPHPScalaPerlKotlinWeb TechnologiesHTMLCSSJavaScriptBootstrapTailwind CSSAngularJSReactJSjQueryNodeJSPHPWeb DesignWeb BrowserFile FormatsComputer Science SubjectsOperating SystemsDBMSComputer NetworkComputer Organization & ArchitectureTOCCompiler DesignDigital Elec. & Logic DesignSoftware EngineeringEngineering MathematicsData Science & MLComplete Data Science CourseData Science TutorialMachine Learning TutorialDeep Learning TutorialNLP TutorialMachine Learning ProjectsData Analysis TutorialTutorial LibraryPython TutorialDjango TutorialPandas TutorialKivy TutorialTkinter TutorialOpenCV TutorialSelenium TutorialGATE CSGATE CS NotesGate CornerPrevious Year GATE PapersLast Minute Notes (LMNs)Important Topic For GATE CSGATE CoursePrevious Year Paper: CS exams Like