Skip to content

Commit 5cdfb6d

Browse files
authored
Added Turtle graphics code
1 parent effc917 commit 5cdfb6d

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

turtle_graphics.py

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import turtle as tt
2+
from random import randint, sample
3+
4+
def draw():
5+
size = randint(40, 300)
6+
angles = (144, 150, 157.5, 160, 165)
7+
angle = sample(angles, 1)[0]
8+
9+
colors = [
10+
('#922B21', '#E6B0AA'), ('#76448A', '#D2B4DE'), ('#1F618D', '#AED6F1'), ('#515A5A', '#EAEDED'),
11+
('#148F77', '#D1F2EB'), ('#B7950B', '#F7DC6F'), ('#F39C12', '#FDEBD0'), ('#BA4A00', '#F6DDCC')]
12+
color = sample(colors, 1)[0]
13+
tt.color(color[0], color[1])
14+
15+
x_pos = randint(-200,200)
16+
y_pos = randint(-200,200)
17+
tt.pu()
18+
tt.setpos(x_pos, y_pos)
19+
start_position = tt.pos()
20+
tt.pd()
21+
22+
tt.begin_fill()
23+
while True:
24+
tt.forward(size)
25+
tt.left(angle)
26+
if abs(tt.pos() - start_position) < 1:
27+
break
28+
tt.end_fill()
29+
30+
tt.circle(100)
31+
for i in range(3):
32+
tt.pensize(i%3)
33+
draw()
34+
35+
tt.done()

0 commit comments

Comments
 (0)