-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpython.py
71 lines (66 loc) · 1.85 KB
/
python.py
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
from random import randrange
from turtle import*
def isInScreen(win,turt):
leftBound=-win.window_width()/2
rightBound=win.window_width()/2
topBound=win.window_height()/2
bottomBound=-win.window_height()/2
turtleX=turt.xcor()
turtleY=turt.ycor()
stillIn=True
if turtleX>rightBound or turtleX<leftBound:
stillIn=False
if turtleY>topBound or turtleY<bottomBound:
stillIn=False
return stillIn
def sameposition(Red,Blue):
if Red.pos()==Blue.pos():
return False
else:
return True
def main():
wn=Screen()
Red=Turtle()
Red.pencolor("red")
Red.pensize(5)
Red.shape('turtle')
pos=Red.pos()
Blue=Turtle()
Blue.pencolor("blue")
Blue.pensize(5)
Blue.shape('turtle')
Blue.hideturtle()
Blue.penup()
Blue.goto(pos[0]+50, pos[1])
Blue.showturtle()
Blue.pendown()
mT=True
jT=True
while mT and jT and sameposition(Red,Blue):
coinRed=randrange(0,2)
angleRed=90
if coinRed==0:
Red.left(angleRed)
else:
Red.right(angleRed)
coinBlue=randrange(0,2)
angleBlue=90
if coinBlue==0:
Blue.left(angleBlue)
else:
Blue.right(angleBlue)
Red.forward(50)
Blue.forward(50)
mT=isInScreen(wn,Blue)
jT=isInScreen(wn,Red)
Red.pencolor("black")
Blue.pencolor("black")
if jT==True and mT==False:
Red.write("Red Won",True,align="center",font=("arial",15,"bold"))
elif mT==True and jT==False:
Blue.write("Blue Won",True,align="center",font=("arial",15,"bold"))
else:
Red.write("Draw",True,align="center",font=("arial",15,"bold"))
Blue.write("Draw",True,align="center",font=("arial",15,"bold"))
wn.exitonclick()
main()