-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkhushi.py
More file actions
58 lines (58 loc) · 829 Bytes
/
khushi.py
File metadata and controls
58 lines (58 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import turtle
t=turtle.Turtle()
t.pensize(3)
t.color("black")
wn=turtle.Screen()
wn.bgcolor("pink")
t.up()
t.goto(-380,-50)
t.down()
t.goto(-380,100)
t.goto(-380,25)
t.left(40)
t.forward(100)
t.backward(100)
t.left(-80)
t.forward(100)
t.up()
t.goto(-270,-50)
t.down()
t.goto(-270,100)
t.goto(-270,15)
t.left(90)
t.circle(-50,90)
t.goto(-200,-50)
t.up()
t.goto(-170,30)
t.down()
t.left(-50)
t.forward(50)
t.circle(40,180)
t.forward(50)
t.up()
t.goto(-50,30)
t.left(-90)
t.down()
t.forward(20)
t.backward(20)
t.circle(-22,-185)
t.circle(22,-250)
t.up()
t.goto(0,-50)
t.left(60)
t.down()
t.goto(0,100)
t.goto(0,15)
t.left(60)
t.circle(-50,90)
t.goto(70,-50)
t.up()
t.goto(100,-50)
t.left(50)
t.down()
t.goto(100,30)
t.up()
t.goto(100,38)
t.down()
t.circle(5)
t.hideturtle()