Skip to content

Commit e3976f5

Browse files
authored
Add files via upload
1 parent 70ad193 commit e3976f5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

HeartIcon.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from turtle import *
2+
import time
3+
color("red")
4+
bgcolor("purple")
5+
begin_fill()
6+
pensize(5)
7+
left(50)
8+
forward(133)
9+
circle(50,200)
10+
right(140)
11+
circle(50,200)
12+
forward(133)
13+
end_fill()
14+
time.sleep(5)
15+
print("The program is finished")
16+
#The program is finished

0 commit comments

Comments
 (0)