Draw Google Logo In Python With Code
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2tnkKMnUDEtGwaYMez0G3ybD8aBCOpZ4YcW8N7xKv6OQ9CQ1eCl8sPp0gQBPInf50p8cuJJgI0dLYdc0lKsrbmmHRVU0XBGbCPLbCg6vK9L5jLX8xRmA_XHhqE7URo8kLpTHU402ZfGJLYPcIsKm0-gkir_pB-fQO08K39cDNe_r29nG3AW0W0mPp/w604-h355/google%20logo%20code.jpg)
import turtle
t=turtle.Turtle()
t.color('#4285F4','#4285F4')
t.pensize(5)
t.speed(3)
t.forward(120)
t.right(90)
t.circle(-150,50)
t.color('#0F9D58')
t.circle(-150,100)
t.color('#F4B400')
t.circle(-150,60)
t.color('#DB4437','#DB4437')
t.begin_fill()
t.circle(-150,100)
t.right(90)
t.forward(50)
t.right(90)
t.circle(100,100)
t.right(90)
t.forward(50)
t.end_fill()
t.begin_fill()
t.color("#F4B400","#F4B400")
t.right(180)
t.forward(50)
t.right(90)
t.circle(100,60)
t.right(90)
t.forward(50)
t.right(90)
t.circle(-150,60)
t.end_fill()
t.right(90)
t.forward(50)
t.right(90)
t.circle(100,60)
t.color('#0F9D58','#0F9D58')
t.begin_fill()
t.circle(100,100)
t.right(90)
t.forward(50)
t.right(90)
t.circle(-150,100)
t.right(90)
t.forward(50)
t.end_fill()
t.right(90)
t.circle(100,100)
t.color('#4285F4','#4285F4')
t.begin_fill()
t.circle(100,25)
t.left(115)
t.forward(65)
t.right(90)
t.forward(42)
t.right(90)
t.forward(124)
t.right(90)
t.circle(-150,50)
t.right(90)
t.forward(50)
t.end_fill()
t.penup()