turtle.dot() function in Python Last Updated : 28 May, 2024 Comments Improve Suggest changes Like Article Like Report The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support. turtle.dot()This function is used to draw a circular dot with a particular size, with some color. If the size is not given, the maximum of pensize+4 and 2*pensize is used. Syntax : turtle.dot(size=None, *color)Parameters: Arguments Description sizean integer >= 1 (if given)colora colorstring or a numeric color tupleBelow is the implementation of the above method with some examples : Example 1 : Python import turtle # here we created turtle object t = turtle.Turtle() # here we set turtle's speed (we can add any speed from 0 to 10) t.speed(1) # here we moved the turtle forward t.forward(100) # here we created a dot with 60 diameter t.dot(60, "yellow") Output : Example 2 : Python # import package import turtle # delay the turtle work speed # for better understandings turtle.delay(500) # hide the turtle turtle.ht() # some dots with diameter and color turtle.dot(200, "red") turtle.dot(180, "orange") turtle.dot(160, "yellow") turtle.dot(140, "green") turtle.dot(120, "blue") turtle.dot(100, "indigo") turtle.dot(80, "violet") turtle.dot(60, "white") # write text turtle.write("GFG", align="center", font=('Verdana', 12, 'bold')) Output : Comment More infoAdvertise with us Next Article turtle.dot() function in Python D deepanshu_rustagi Follow Improve Article Tags : Python Python-turtle Practice Tags : python Similar Reads turtle.clone() function in Python The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support. turtle.clone() The turtle.clone() method is used to create and return a clone of th 2 min read turtle.distance() function in Python The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses tkinter for the underlying graphics, it needs a version of Python installed with Tk support. turtle.distance() This method is used to return the distance from the turtle to (x, 2 min read turtle.degrees() function in Python The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses tkinter for the underlying graphics, it needs a version of Python installed with Tk support. turtle.degrees() This method is used to set angle measurement units to degrees. By 1 min read turtle.bgpic() function in Python The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support. turtle.bgpic() This function is used to set a background image or return name of th 1 min read turtle.addshape() function in Python The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support. turtle.addshape() This function is used to Adds a turtle shape to TurtleScreen's sh 2 min read Like