Draw A Sun In Python Turtle With Code

Looking for a tutorial on how to draw a sun in python, then you are at the right place today. In this tutorial I will show you how to draw a sun in python turtle, so follow this tutorial till the end.
We will use the turtle module to draw a sun using python. It is a GUI python library which can be used to draw anything from characters, cartoons, shapes and other objects.
Drawing a sun in python is going to be difficult if you are new to python but don’t worry I will show you everything and provide you with the code of this program.
Python Code To Draw A Sun
from turtle import *
color('orange', 'yellow')
begin_fill()
while True:
forward(350)
left(170)
right(280)
if abs(pos()) < 1:
break
end_fill()
done()
Above is the python program to draw a sun. Now to run this program you need to have python installed on your computer, If you don’t have then follow this guide: Install and setup python on your computer.
To run this python program, follow the below steps:
- Create a new folder for this python project.
- Open it in a code editor of your choice.
- Create a python file with an ending .py extension.
- Copy the above code and paste it in your file.
Now you have the code, but there is one last thing you need to do as I have said I have used the turtle library for this program so you might need to install it if you get any errors like turtle module not found.
Turtle comes pre-installed with python setup, but if you get any errors you can reinstall it using the below command.
pip install turtle
So now you have everything setup and you are ready to run the program, so to run this program open a command prompt at your program folder location and paste the below command.
python filename.py
The above command will run the program and it will open a new window and it will start drawing a sun and below is the finished drawing of a sun.

As you can see, we successfully drew a sun using python turtle. I hope you were able to run this program successfully.
Want more amazing turtle tutorials like this check out this: Awesome Python Turtle Codes.
Don’t want to create all the files and folders then you can run this program now using this online python compiler it is fast and easy.
Summary
This was the tutorial on drawing a sun in python turtle. I hope you found this tutorial helpful and useful. Do share this tutorial with your friends who might be interested in this program.
Here are some more python drawing tutorials for you:
- Draw Pikachu using python with code.
- Draw doraemon using python turtle.
- Draw shinchan using python turtle.
- Draw I love you using python turtle.
- Draw Batman logo using python turtle.
- Draw Google Logo using python turtle.
- Create a fruit ninja game in python.
- Make a python calculator using turtle.
- Draw christmas tree using python.
- Draw spiderman in python programming.
- Draw Python Logo Using Python.
- Draw Iron Man using python turtle with code.
- Draw A Heart Using python turtle with code.
- Draw car in python turtle with code.
I hope you found what you were looking for from this tutorial, and if you want more python guides and tutorials like this, do join our Telegram channel for future updates.
Thanks for reading, have a nice day 🙂