-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRacingTurtle.py
More file actions
84 lines (73 loc) · 1.18 KB
/
RacingTurtle.py
File metadata and controls
84 lines (73 loc) · 1.18 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
from turtle import *
from random import randint
speed(30)
penup()
goto(-140,140)
for step in range(15):
write(step,align='center')
right(90)
forward(10)
pendown()
for n in range(9):
forward(10)
penup()
forward(10)
pendown()
penup()
backward(190)
left(90)
forward(20)
ada = Turtle()
ada.color('red')
ada.shape('turtle')
ada.penup()
ada.goto(-160,120)
ada.pendown()
for turn in range(10):
ada.right(36)
bob = Turtle()
bob.color('blue')
bob.shape('turtle')
bob.penup()
bob.goto(-160,90)
bob.pendown()
for turn in range(10):
bob.right(36)
ctc = Turtle()
ctc.color('purple')
ctc.shape('turtle')
ctc.penup()
ctc.goto(-160,60)
ctc.pendown()
for turn in range(10):
ctc.right(36)
dld = Turtle()
dld.color('magenta')
dld.shape('turtle')
dld.penup()
dld.goto(-160,30)
dld.pendown()
for turn in range(10):
dld.right(36)
suma,sumb,sumc,sumd=0,0,0,0
for turn in range(100):
ta = randint(1,5)
ada.forward(ta)
suma = suma + ta
if suma >=300:
break
tb=randint(1,5)
bob.forward(tb)
sumb = sumb + tb
if sumb >=300:
break
tc=randint(1,5)
ctc.forward(tc)
sumc = sumc + tc
if sumc >=300:
break
td=randint(1,5)
dld.forward(td)
sumd = sumd + td
if sumd >=300:
break