
Introduction
Welcome to copyassignment.com. In this post, we’ll look at how to create a Heart Using Python Turtle Library. Don’t worry if you’re new to the turtle library; it’ll be quite simple to learn. I’ll go through every element in this article, and you can also check out our other python turtle lessons.
Let’s start
1. In order to access the Python Turtle library, you need to import it into your Python environment, use the following command to import turtle in your python script.
# Import turtle package
import turtle
# Creating a turtle object(vr)
vr = turtle.Turtle()
# If you wish to change the background color, you can use the bgcolor method, by default it is white.
turtle.Screen().bgcolor('black')
2. Set the speed to 4 using the speed(), and Set the turtle Pen size (It is used to adjust pen thickness).
turtle.pensize(4)
vr.speed (10)
3. Creating a function to draw a curve with simple forward and left moves.
# Defining a method to draw curve
def drawcurve():
for i in range(200):
# Defining step by step curve motion
vr.right(1)
vr. forward(1)
4. Set the fill color to pink and border color to Red.
vr.color('red', 'pink')
5. Start filling the color And Drawing the lines.
#begin_fill() : When you want to fill a shape with a color, then call this method
vr.begin_fill()
#In order to change the pen's direction, use left method.
vr.left(140)
# Draw the left line
vr.forward(111.65)
6. Draw the Left Curve.
#calling the drawcurve Function
drawcurve()
7. Draw the Right Curve.
vr.left(120)
drawcurve()
# Draw the right line
vr.forward(111.65)
vr.end_fill()
vr.penup()
vr.goto(77, -40)
vr.pendown()
vr.hideturtle()
Complete Code to Heart Using Python Turtle:
# Import turtle package import turtle # Creating a turtle object(vr) vr = turtle.Turtle() #set the Back Ground color turtle.Screen().bgcolor('black') # set the pen size turtle.pensize(4) vr.speed (10) # Defining a method to draw curve def drawcurve(): for i in range(200): # Defining step by step curve motion vr.right(1) vr. forward(1) # Set the fill color to pink and border color to Red vr.color('red', 'pink') # Start filling the color vr.begin_fill() vr.left(140) # Draw the left line vr.forward(111.65) # Draw the left curve drawcurve() vr.left(120) drawcurve() # Draw the right line vr.forward(111.65) # end_fill() : This method fills the polygon with the current fill color by closing it between the current position and the initial position. vr.end_fill() vr.penup() vr.goto(77, -40) vr.pendown() vr.hideturtle()
Output:

The curve function is defined in the preceding code to construct a curve to screen. The color will fill automatically once it has taken the entire heart form. Copy and execute the given code; you can also tweak it by adding new designs. Also if you want to learn more about Python turtle tutorials then check out the link.
Also Read:
- Top 25 Pattern Programs in C++
- Currency Converter in C++
- SQLite | CRUD Operations in Python
- Number Guessing Game in C++
- Image background remover in Python
- C++ Project Structure
- Python | Check if a string is a palindrome or not without Recursion
- Python | Check if a number is an Armstrong Number or not using Recursion
- Python | Check if a number is an Armstrong Number or not without using Recursion
- Python | Shuffle a list using recursion
- Python | Shuffle a list without recursion
- Python | Implementing switch case using functions
- Python function to check whether a number is perfect or not
- Python | Find LCM using function
- Python | Find HCF using function
- Python | Convert the binary number to decimal without using library function
- Python | Create a basic operations calculator(+, -, /, and x), create a separate function for each operation
- Python | Detecting the number of local variables declared in a function
- Python | Making a chain of function decorators (bold italic underline etc)
- Python | Access function inside a function
- Event Management System Project in Python
- ATM machine program in C++
- Python | Create a function with a pass statement
- Python | Function to calculate the square root of a number
- Python | A function that calculates the power of a number
- Python | A function that accepts 2 integers and adds them and returns their sum
- Python | Function that takes a list of integers and returns the last integer
- Python | Return multiple values from a function
- Python function that takes a list and returns a new list with unique elements of the first list
- Python | Generate a random number in the range of 1 to 10 using the function
Keywords-> python turtle design, turtle, design, 12th class python project, python for kids, 12th class, beautiful turtle designs, python