Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyamalogi committed Oct 2, 2023
1 parent 0c6b16a commit 7eb179d
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 0 deletions.
Empty file.
Binary file added Turtle-a-thon/Google Logo/google logo gif.mp4
Binary file not shown.
74 changes: 74 additions & 0 deletions Turtle-a-thon/Google Logo/google logo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
import turtle
t = turtle.Turtle()
turtle.bgcolor("black")
# t.speed()

t.color("#4285F4", "#4285F4")
t.pensize(3)
t.forward(120)
t.right(90)
t.circle(-150, 50)
t.color("#34A853")
t.circle(-150, 100)
t.color("#FBBC05")
t.circle(-150, 60)
t.color("#EA4335", "#EA4335")
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("#FBBC05", "#FBBC05")
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("#34A853", "#34A853")
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.up()
t.goto(100,100)
t.down()
turtle.color("White")
turtle.write("@shreyamalogi")

t.hideturtle()
turtle.done()

0 comments on commit 7eb179d

Please sign in to comment.