-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmind_storms.py
More file actions
54 lines (32 loc) · 861 Bytes
/
mind_storms.py
File metadata and controls
54 lines (32 loc) · 861 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
import turtle
def draw_square():
window = turtle.Screen()
window.bgcolor('orange')
brad = turtle.Turtle()
turtle.shape('circle')
turtle.color('green')
turtle.speed(1)
for i in range(36):
num = 0
while num <=3:
brad.forward(100)
brad.right(90)
num +=1
brad.right(10)
#time = draw_sqaure()
#for i in time:
#brad.right(10)
#angie = turtle.Turtle()
#angie.circle(100)
#angie.shape('arrow')
#angie.color('blue')
#tody = turtle.Turtle()
#tody.shape('triangle')
#tody.color('green')
#num = 0
#while num <=2:
#tody.forward(100)
#tody.left(120)
#num +=1
draw_square()
time()