Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.

Commit 6f1ff50

Browse files
Merge pull request #482 from its-100rabh/its-100rabh-patch-1
Create windows_logo.py
2 parents e1b9939 + 3cd74f6 commit 6f1ff50

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

18.2 KB
Loading
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import turtle
2+
t=turtle.Turtle()
3+
s=turtle.Screen()
4+
t.speed(2)
5+
s.bgcolor("black")
6+
t.penup()
7+
t.goto(-50,60)
8+
t.pendown()
9+
t.color("#00adef")
10+
t.begin_fill()
11+
t.goto(100,100)
12+
t.goto(100,-100)
13+
t.goto(-50,-60)
14+
t.goto(-50,60)
15+
t.end_fill()
16+
t.color("black")
17+
t.goto(15,100)
18+
t.color("black")
19+
t.width(10)
20+
t.goto(15,-100)
21+
t.penup()
22+
t.goto(100,0)
23+
t.pendown()
24+
t.goto(-100,0)

0 commit comments

Comments
 (0)