- Draw Circle in Python Using turtle circle() Function
- Cool Patterns You Can Make With circle() in Python
- How to Draw a Circle with Different Colors in Python
- Other Articles You’ll Also Like:
- About The Programming Expert
- turtle — Turtle graphics¶
- Tutorial¶
- Starting a turtle environment¶
- Basic drawing¶
- Pen control¶
- The turtle’s position¶
- Making algorithmic patterns¶
- Explanation¶
Draw Circle in Python Using turtle circle() Function
To draw a circle in Python, we can use the circle() function from the Python turtle module.
import turtle t = turtle.Turtle() def draw_circle(radius): t.circle(radius) draw_circle(100)
The turtle module in Python allows us to create graphics easily in our Python code.
We can use the turtle module to make all sorts of shapes in Python. For example, we can draw rectangles and draw triangles easily in Python with the turtle module.
One other shape which is easy to draw with turtle is a circle.
The defining feature of a circle is the radius. To draw a circle in Python, we can use the turtle circle() function from the turtle module.
We can define a simple function which will take one argument, the radius of our circle, and make the circle.
Below is a simple example of how to use Python to create a circle.
import turtle t = turtle.Turtle() def draw_circle(radius): t.circle(radius) draw_circle(100)
Cool Patterns You Can Make With circle() in Python
There are a few cool patterns you can create with the Python turtle circle() function.
Below is the Python code for creating a spiral, and the output of the spiral with the turtle module.
import turtle t = turtle.Turtle() def draw_spiral(starting_radius, loops): for i in range(0, loops): t.circle(starting_radius + i, 60) draw_spiral(10, 100)
You can also make concentric circles easily with the circle() function. To make concentric circles, we make circles starting in the middle, and keep increasing the radius until the end.
Below is the Python code for creating concentric circles.
import turtle t = turtle.Turtle() def draw_concentric_circles(starting_radius, loops): for i in range(0, loops): t.circle(starting_radius*i) t.up() t.sety((starting_radius *i)*(-1)) t.down() draw_concentric_circles(10, 25)
How to Draw a Circle with Different Colors in Python
With turtle, we can easily add color to the shapes we create.
The main function you can use to change the color of a line is with the turtle pencolor() function.
Below is an example and the output of how to draw a green circle using pencolor() in Python.
import turtle t = turtle.Turtle() t.pencolor("green") t.circle(50)
To fill a shape, there are a few steps to take. We use the fillcolor() function to define the fill color of our shape, and then use the begin_fill() and end_fill() functions to define when to begin and end filling shapes with the fill color.
Below is an example and the output of how to fill a circle with the color ‘blue’ using fillcolor(), begin_fill() and end_fill() in Python.
import turtle t = turtle.Turtle() t.fillcolor("blue") t.begin_fill() t.circle(50) t.end_fill()
Hopefully this article has been helpful for you to learn how to draw a circle in Python.
Other Articles You’ll Also Like:
- 1. Read Pickle Files with pandas read_pickle Function
- 2. Python atan – Find Arctangent and Inverse Tangent of Number
- 3. Remove First and Last Character from String Using Python
- 4. Check if Word is Palindrome Using Recursion with Python
- 5. PROC REG Equivalent in Python
- 6. Generate Random Float Between 0 and 1 Using Python
- 7. for char in string – How to Loop Over Characters of String in Python
- 8. Using Python to Replace Backslash in String
- 9. Python Split List into N Sublists
- 10. Using Python to Calculate Sum of List of Numbers
About The Programming Expert
The Programming Expert is a compilation of a programmer’s findings in the world of software development, website creation, and automation of processes.
Programming allows us to create amazing applications which make our work more efficient, repeatable and accurate.
At the end of the day, we want to be able to just push a button and let the code do it’s magic.
You can read more about us on our about page.
turtle — Turtle graphics¶
Turtle graphics is an implementation of the popular geometric drawing tools introduced in Logo, developed by Wally Feurzeig, Seymour Papert and Cynthia Solomon in 1967.
Turtle can draw intricate shapes using programs that repeat simple moves.
In Python, turtle graphics provides a representation of a physical “turtle” (a little robot with a pen) that draws on a sheet of paper on the floor.
It’s an effective and well-proven way for learners to encounter programming concepts and interaction with software, as it provides instant, visible feedback. It also provides convenient access to graphical output in general.
Turtle drawing was originally created as an educational tool, to be used by teachers in the classroom. For the programmer who needs to produce some graphical output it can be a way to do that without the overhead of introducing more complex or external libraries into their work.
Tutorial¶
New users should start here. In this tutorial we’ll explore some of the basics of turtle drawing.
Starting a turtle environment¶
In a Python shell, import all the objects of the turtle module:
If you run into a No module named ‘_tkinter’ error, you’ll have to install the Tk interface package on your system.
Basic drawing¶
Send the turtle forward 100 steps:
You should see (most likely, in a new window on your display) a line drawn by the turtle, heading East. Change the direction of the turtle, so that it turns 120 degrees left (anti-clockwise):
Let’s continue by drawing a triangle:
forward(100) left(120) forward(100)
Notice how the turtle, represented by an arrow, points in different directions as you steer it.
Experiment with those commands, and also with backward() and right() .
Pen control¶
Try changing the color — for example, color(‘blue’) — and width of the line — for example, width(3) — and then drawing again.
You can also move the turtle around without drawing, by lifting up the pen: up() before moving. To start drawing again, use down() .
The turtle’s position¶
Send your turtle back to its starting-point (useful if it has disappeared off-screen):
The home position is at the center of the turtle’s screen. If you ever need to know them, get the turtle’s x-y co-ordinates with:
And after a while, it will probably help to clear the window so we can start anew:
Making algorithmic patterns¶
Using loops, it’s possible to build up geometric patterns:
for steps in range(100): for c in ('blue', 'red', 'green'): color(c) forward(steps) right(30)
— which of course, are limited only by the imagination!
Let’s draw the star shape at the top of this page. We want red lines, filled in with yellow:
Just as up() and down() determine whether lines will be drawn, filling can be turned on and off:
while True: forward(200) left(170) if abs(pos()) 1: break
Finally, complete the filling:
(Note that filling only actually takes place when you give the end_fill() command.)
Explanation¶
The turtle module is an extended reimplementation of the same-named module from the Python standard distribution up to version Python 2.5.
It tries to keep the merits of the old turtle module and to be (nearly) 100% compatible with it. This means in the first place to enable the learning programmer to use all the commands, classes and methods interactively when using the module from within IDLE run with the -n switch.
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.
The object-oriented interface uses essentially two+two classes:
- The TurtleScreen class defines graphics windows as a playground for the drawing turtles. Its constructor needs a tkinter.Canvas or a ScrolledCanvas as argument. It should be used when turtle is used as part of some application. The function Screen() returns a singleton object of a TurtleScreen subclass. This function should be used when turtle is used as a standalone tool for doing graphics. As a singleton object, inheriting from its class is not possible. All methods of TurtleScreen/Screen also exist as functions, i.e. as part of the procedure-oriented interface.
- RawTurtle (alias: RawPen ) defines Turtle objects which draw on a TurtleScreen . Its constructor needs a Canvas, ScrolledCanvas or TurtleScreen as argument, so the RawTurtle objects know where to draw. Derived from RawTurtle is the subclass Turtle (alias: Pen ), which draws on “the” Screen instance which is automatically created, if not already present. All methods of RawTurtle/Turtle also exist as functions, i.e. part of the procedure-oriented interface.
The procedural interface provides functions which are derived from the methods of the classes Screen and Turtle . They have the same names as the corresponding methods. A screen object is automatically created whenever a function derived from a Screen method is called. An (unnamed) turtle object is automatically created whenever any of the functions derived from a Turtle method is called.
To use multiple turtles on a screen one has to use the object-oriented interface.
In the following documentation the argument list for functions is given. Methods, of course, have the additional first argument self which is omitted here.