Skip to main content

How to draw apple logo using python | Draw apple logo using turtle


 


Apple 

Well I don't need to introduce apple. You know how apple has become the first company to hit trillion revenue. Well the hardwork is in their. I also do hardwork on this logo so kindly request to you to support me for my hardwork so I can make more project for you with source code.

Module

import turtle as t


Source Code

import turtle as t
t.begin_fill()
t.fillcolor('black')
t.left(134)
for i in range(30):
    t.forward(1)
    t.left(1)
t.right(5)
for i in range(35):
    t.forward(1)
    t.left(1)
t.left(5)
t.forward(30)

for i in range(15):
    t.forward(0.7)
    t.right(3)

t.forward(25)
t.left(5)
for i in range(50):
    t.forward(1)
    t.left(1)
t.right(3)
for i in range(50):
    t.forward(1)
    t.left(1)
t.right(5)
for i in range(45):
    t.forward(2)
    t.left(1)
t.right(5)
for i in range(40):
    t.forward(2)
    t.left(1)
t.left(5)
for i in range(20):
    t.forward(1)
    t.left(2)
t.left(5)
t.forward(15)
for i in range(9):
    t.forward(2)
    t.right(3)
t.forward(1)
for i in range(15):
    t.forward(1)
    t.right(1)
t.right(4)
t.forward(4.5)
t.right(1)
for i in range(27):
    t.forward(1)
    t.left(2)
t.left(8)
t.forward(5)
for i in range(25):
    t.forward(2)
    t.left(1)
t.right(3)
t.forward(10)
t.left(83
for i in range(75):
    t.forward(1.3)
    t.right(1)
t.right(4)
for i in range(24):
    t.forward(1.3)
    t.right(1)
t.forward(9.66)
t.end_fill()
t.penup()
t.left(132)
t.forward(100)
t.right(96)
t.pendown()
t.begin_fill()
t.fillcolor('black')
for i in range(60):
    t.forward(0.8)
    t.right(1)
t.right(120)
for i in range(60):
    t.forward(0.8)
    t.right(1)
t.hideturtle()
t.end_fill()
t.done()

Hope you like this post and find it usefull. As a starter I need your support to continue my journey so please support me.And thankyou for read this blog🙏


Check the result on

My youtube channel https://youtu.be/MH4q1R59QEA

Comments

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>       ...