Skip to main content

How to draw discord logo using python

 Python turtle module

In this project we will use the python turtle module to draw the discord logo

Installation of the module

If you have Python3.0.0 or the latest version of python then we have the module preinstalled already. But if you have not the latest version you can simply install it by the commond pip install turtle. But if you have not install the pip in your terminal you can not use the module.

First Part

Firstly import the module and all the methon using from turtle import * 

Create the curve

The post is all depend on the drawing of the curve. So it is important to draw a curve and then join the curve and create your own desgin. Draw the curve using for loop.
for i in range(27):
     forward(2)
     right(0.3)

Source Code

from turtle import *
pensize(3)
speed(7000)
bgcolor('#7289DA')
penup()
goto(-40,50)
left(5)
pendown()
for i in range(27):
    forward(2)
    right(0.3)
left(60)
forward(20)
penup()
backward(20)
right(60)
for i in range(27):
    backward(2)
    left(0.3)
left(51.9)
pendown()
left(60)
forward(20)
left(80)
forward(50)
# left part
left(40)
for i in range(20):
    forward(2)
    left(0.4)
for i in range(50):
    forward(2)
    left(0.5)
for i in range(35):
    forward(1)
    left(0.3)
left(45)
for i in range(63):
    forward(1)
    left(0.2)
left(87)
forward(25)
left(90)
for i in range(20):
    forward(1)
    right(0.2)
right(110)
forward(6)
# end of right part
# smile
right(63)
for i in range(155):
    forward(1)
    left(0.3)
# right part
right(90)
forward(6)
right(83)
for i in range(20):
    right(0.2)
    forward(1)
left(90)
forward(25)
left(87)
for i in range(63):
    left(0.2)
    forward(1)
left(45)
for i in range(35):
    left(0.3)
    forward(1)
for i in range(50):
    left(0.5)
    forward(2)
for i in range(20):
    left(0.4)
    forward(2)
forward(0.1)
# end of right part
left(40)
forward(50)
penup()
goto(-60,-16)
pendown()
fillcolor('white')
begin_fill()
circle(30)
end_fill()
penup()
goto(50,-16)
pendown()
fillcolor('white')
begin_fill()
circle(30)
end_fill()
hideturtle()
done()

Comments

Post a Comment

Popular posts from this blog

Draw Minecraft Charater in Python

  Minecraft  is a  sandbox video game  developed by the Swedish video game developer  Mojang Studios . The game was created by  Markus "Notch" Persson  in the  Java programming language . Following several early private testing versions, it was first made public in May 2009 before fully releasing in November 2011, with  Jens Bergensten  then taking over development.  Minecraft  has since been ported to several other platforms and is the  best-selling video game of all time , with over 238 million copies sold and nearly 140 million  monthly active users  as of 2021 . We gonna build a character of Minecraft using our creativity and coding skills so let's drive into the code: Code: import turtle as t def eye ( r , a ):     t . fillcolor ( 'brown' )     t . begin_fill ()     t . circle ( r , a )     t . end_fill () t . begin_fill () t . fillcolor (...

Age and Gender Detection In Python - Creation Code

Gender Identity: Gender identity is the personal sense of one's own  gender . Gender identity can correlate with a person's  assigned sex  or can differ from it. In most individuals, the various biological determinants of sex are congruent and consistent with the individual's gender identity.  Gender expression  typically reflects a person's gender identity, but this is not always the case. While a person may express behaviors, attitudes, and appearances consistent with a particular  gender role , such expression may not necessarily reflect their gender identity. The term gender identity was coined by  Robert J Stoller  in 1964. Modules and assets: In this project, we will use the assetsOpenCV library which will help us to play with the camera  We also use some datasets to identify the faces and ages you can find those datasets  here Explanation: We will first train our models test.py import cv2 def faceBox ( net , frame , conf_thresho...

Walking Cat Animation using Pure CSS and HTML

  Showing your creativity with coding is really awesome and fun. This is the post where the creativity is the CSS. So enjoy the code and try to show your creativity. HTML: <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>walking Cat</title>     <link rel="stylesheet" href="style.css"> </head> <body>         <div id="marco">           <div id="cielo"></div>                 <div id="luna"></div>                 <div id="gato"></div>                 <div id="muro"></div>       ...