Skip to main content

How to draw juventus logo using python | Juventus logo with turtle


 

Juventus

Well juventus is a football club and even most of you are fan of juventus so decide to post the source code so you can draw your favourite club with coding ant it also increase the motivation to do code so let's code

Module

As every post we use the same turtle module

import turtle as t 

Source code

import turtle as t 
t.bgcolor('black')
t.speed(1)
t.pencolor('white')
t.begin_fill()
t.fillcolor('white')
t.forward(50)
t.right(90)
t.forward(100)
for i in range(18):
    t.forward(1)
    t.left(-3)
t.forward(25)
t.left(-78)
t.forward(22)
t.right(112)
t.forward(18)
t.penup()
t.pendown()
for i in range(18):
    t.forward(1)
    t.left(3)
    
t.right(-10)
t.forward(73)
t.right(-90)
t.forward(34)
t.right(90)
t.forward(23)
t.end_fill()
t.penup()
t.right(90)
t.forward(100)
t.right(90)
t.pendown()
t.begin_fill()
t.fillcolor('white')
t.forward(100)
for i in range(18):
    t.forward(2)
    t.left(-3)

t.right(3)
t.forward(40)
t.right(60)
t.forward(22)
t.right(120)
t.forward(3)
t.forward(30)
for i in range(15):
    t.forward(3)
    t.left(4)
t.right(3)
t.forward(88)
t.right(90)
t.forward(25)
t.end_fill()
t.done()

I know this is a lengthy code but try to understand it for your favourite club and also comment how you like this project

See the result

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

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

How To Draw BMW Logo - In Python

 I know I don't need to introduce BMW as it is a very popular luxury car. Today we gonna draw the BMW logo in python. I know that you can draw it using a pencil and other tools like AutoCAD etc. But we are programmers we talk with computers so let's tell our computer to draw this logo for use with the help of python. Module The only module we will use is that turtle Code: import turtle as t t.begin_fill() t.fillcolor( '#008ac9' ) for i in range ( 50 ):     t.forward( 4 )     t.left( 2 ) t.right(- 80 ) t.forward( 116 ) t.right(- 90 ) t.forward( 132 ) t.end_fill() t.penup() t.pendown() t.right( 90 ) for i in range ( 50 ):     t.forward( 4 )     t.left(- 2 ) t.right( 80 ) t.forward( 116 ) t.forward(- 116 ) t.right( 90 ) t.begin_fill() t.fillcolor( '#008ac9' ) for j in range ( 45 ):     t.forward(- 4 )     t.left(- 2 ) t.right(- 90 ) t.forward( 116 ) t.end_fill() t.right( 180 ) t.forward( 116 ) t.right( 90 ) for i in ...

Draw spiderman logo using python | spiderman logo with python turtle

Well like me I think you are also a fan of spiderman. We also do coding so let's create our favorite superhero in python and have some fun with it Module: We only use one simple module in this project that is Turtle Code: from turtle import * bgcolor ( 'red' ) pensize ( 10 ) fillcolor ( 'black' ) begin_fill () circle ( 20 ) end_fill () penup () right ( 90 ) forward ( 5 ) pendown () fillcolor ( 'black' ) begin_fill () right ( 60 ) for i in range ( 6 ):     forward ( 50 )     left ( 60 ) end_fill () penup () left ( 150 ) forward ( 39 ) left ( 90 ) forward ( 9 ) pendown () forward ( 25 ) right ( 60 ) forward ( 15 ) left ( 60 ) forward ( 25 ) penup () backward ( 25 ) right ( 60 ) back ( 15 ) left ( 60 ) backward ( 25 ) left ( 60 ) pendown () backward ( 35 ) left ( 120 ) forward ( 80 ) penup () left ( 40 ) forward ( 30 ) left ( 140 ) pendown () forward ( 110 ) left ( 60 ) forward ( 40 ) right ( 60 ) forward ( 7 ) right ( 60 ) forward ( 20 ) left ( 60 ) forw...