You are on page 1of 15

Python Coding Using Turtle (Logo Making )

A Project Report
On
Python Coding Using Turtle (Logo Making)

Submitted for partial fulfillment of the requirements for the subject


Project Based Learning (FE, IInd Semester)
of
BACHELOR OF ENGINEERING

BY

Jeshtha Taktewale(FC-23)
Anjali Patil(FC-03)
Harsh Sutar(FC-27 )
Vijay Gatkal(FC-32)
Dipesh Chavan(FC-01)

Under the Guidance of

Prof. Pritam More

DEPARTMENT OF FIRST YEAR ENGINEERING


DR. D. Y. PATIL INSTITUTE OF TECHNOLOGY
(DIT), PIMPRI, PUNE.

2021-2022

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune


Python Coding Using Turtle (Logo Making )

CERTIFICATE

This is to certify that the project work entitled Python Coding


Using Turtle (Logo Making) is a bonafide work carried out by

Jeshtha Taktewale(FC-23)
Anjali Patil(FC-03)
Haarsh Sutar(FC-27)
Vijay Gatkal(FC-32)
Dipesh Chavan(FC-01)

in partial fulfillment of the requirements for the subject Project


Based Learning (FE, IInd Semester) of degree of Bachelor of
Engineering in First Year Engineering from Dr. D. Y. Patil
Institute of Technology, Pimpri during the academic year 2021-
2022

Date:
Place:Dr.D.Y.P.I.T , Pimpri , Pune-18

Prof.Pritam More Dr. R. G. Biradar


Project Guide Dean F.E

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune


Python Coding Using Turtle (Logo Making )

Acknowledgement

Any accomplishment requires effort of many people and this work is no


different from it. It involves all technical and nontechnical experience from
various sources. I wish to thank all experts whose experience helped me in
completing this project work. It gives me immense pleasure to present my
project on " Python Coding Using Turtle (Logo Making) "

I would like to express my heartily thanks to our teacher guardian Mrs.Pritam


More ma’am, guide for her dynamic guidance and constant encouragement
throughout the duration of my project preparation. I am extremely grateful to
our dean sir Dr. R. G. Biradar and Prof. P. S. Warke also to our principal sir
Dr. Pramod Patil for providing me with best facilities and atmosphere for the
creative work guidance and encouragement. I would like to thank all those who
have contributed to the completion of the seminar and helped me with valuable
suggestions for improvement.

I am also thankful to my coordinator and other teachers and non-teaching


staff and library for their co-operation and help. I am also very thankful to my
friends for their continuous encouragement. Without their support this work
could not be possible to reach at this level.

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune


Python Coding Using Turtle (Logo Making )

INDEX

Sr.No Content Page No.

1. Abstract 1

2. Introduction 2

3. Methodology 3

4. Working 4

5. Flowchart 6

6. Process 7

7. Result 10

8. Conclusion 11

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune


Python Coding Using Turtle (Logo Making )

Abstract

The main idea of the project is to learn python using an interactive and fun way.
We can use Python for making amazing graphics, designs, animations and
games too. Making amazing graphics using a programming language is amazing
but what’s more amazing is that creating those graphics automatically; just by
writing some lines of code.
In Python turtle is the onscreen pen that one can use for drawing and this is
what gives the library its name. In short, the Python turtle library helps new
programmers get a feel for what programming with Python is like in a fun and
interactive way.
It has a feature similar to a drawing board that allows users to draw pictures and
shapes. Turtle programming is also known as LOGO programming. This library
is widely recommended for someone who is getting started in design
programming.
As mentioned earlier that turtle is a library and so there’s no need to install
anything extra. We can simply use the library just by using the import statement
and the name of the library. This library contains various predefined methods
and functions that are very useful when creating graphics using turtle.

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 1


Python Coding Using Turtle (Logo Making )

Introduction

Getting to Know the Python turtle Library


Turtle is a pre-installed Python library that enables users to create pictures and
shapes by providing them with a virtual canvas. The onscreen pen that you use
for drawing is called the turtle and this is what gives the library its name. In
short, the Python turtle library helps new programmers get a feel for what
programming with Python is like in a fun and interactive way.
Turtle is mainly used to introduce children to the world of computers. It’s a
straightforward yet versatile way to understand the concepts of Python. This
makes it a great avenue for kids to take their first steps in Python programming.
That being said, the Python turtle library is not restricted to little ones alone! It’s
also proved extremely useful for adults who are trying their hands at Python,
which makes it great for Python beginners.
With the Python turtle library, you can draw and create various types of shapes
and images. Here’s a sample of the kinds of drawings you can make with turtle

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 2


Python Coding Using Turtle (Logo Making )

Methodology

Problem definition :
Often learning a new language is difficult for beginners.
To make this learning process easy and simple we can opt to learning turtle and
trying out interesting projects that helps the beginners to develop intereste in
coding.
The main aim of the project is to develop interest in the learning process and
learn python in a fun way.

Planning and approach :


The project is about developing a Spiderman logo. Initially with a
basic knowledge of python and by using the turtle library the code for the
animated Spiderman logo to be created is written.
Although turtle seems very simple, its basic drawing commands can be used to
create rather complex design patterns and it can be very beneficial to play with
turtle in terms of learning Python coding.
The steps in this involve- writing a algorithm for the desired output, drawing a
flow chart for the code,
Using the Library actually to write the code in a creative way, run the program
for the desired output.

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 3


Python Coding Using Turtle (Logo Making )

Working

Logo is often used with a screen. Turtle which is an object on a screen which is
used to stimulate how a turtle moves around a floor. There are many commands
which can be used to control the Turtle. Turtle is an imaginary pen that is given
drawing commands such as go forward etc.
The turtle is built in library so we don’t need to install separately. We just need
to import the library into our Python environment. The Python turtle library
consists of all important methods and functions that we will need to create our
designs and images. Import the turtle library using the following command.

How To Install Turtle:


pip install turtle
or
pip3 install turtle
turtle is a pre-installed Python library that enables users to create pictures and
shapes by providing them with a virtual canvas. The onscreen pen that you use
for drawing is called the turtle and this is what gives the library its name.

VsCode is the framework which we have used to code for Python programming
with Turtle.

Visual Studio Code combines the simplicity of a source code editor with
powerful developer tooling, like IntelliSense code completion and debugging.

To make use of the turtle methods and functionalities, we need to import


turtle.''turtle'' comes packed with the standard Python package and need not be
installed externally. The roadmap for executing a turtle program follows 4 steps:

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 4


Python Coding Using Turtle (Logo Making )

1.Import the turtle module

2.Create a turtle to control.

3.Draw around using the turtle methods.

4.Run turtle.done().

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 5


Python Coding Using Turtle (Logo Making )

Flowchart

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 6


Python Coding Using Turtle (Logo Making )

Process

1.Open VS Code Framework.

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 7


Python Coding Using Turtle (Logo Making )

2.Write Down The Code To Be Executed.

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 8


Python Coding Using Turtle (Logo Making )

3.Run The Encrypted Code.

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 9


Python Coding Using Turtle (Logo Making )

Result

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 10


Python Coding Using Turtle (Logo Making )

Conclusion

The project helps us learn a new programming language like python in a easy and
fun way . Turtle is a pre-installed Python library that allows users to create
pictures and shapes with a provided, virtual canvas.

We can use the logo for :


ONLINE PLATFORMS
It can also be used as website logo, Marketing Strategies
Dekstop- it is used as dekstop wallpapers , animated logo and animated gifs in
PC
Create mini games and animation for kids etc.

Dr.D.Y.Patil Institute Of Technology,Pimpri,Pune 11

You might also like