Input: #import required libraries import turtle import random import time #setup the screen screen=turtle.Screen() screen.bgcolor("red") screen.setup(800, 600) #define and intialise all required variables to control the game mike_steps = 0 tom_steps = 0 FINISH_LINE = 360 chance = 0 step_set = [10, 20, 30, 40, 50, 60] steps=0 countdown=10 bet="TOM" #set assistant turtle to draw finish line mypen = turtle.Turtle() mypen.hideturtle() mypen.pencolor("yellow") #set assistant counter_turtle counter_turtle = turtle.Turtle() counter_turtle.hideturtle() counter_turtle.pencolor("white") counter_turtle.penup() counter_turtle.setpos(-150,50) counter_turtle.pendown() #display information about the game about_game = "Tom and Mike are the two turtles\nto race to the finish line.\nLet us see who wins!\nBy: Tejasvi Vashishtha" counter_turtle.write(about_game,font=("arial", 20, "bold")) counter_turtle.penup() time.sleep(5.0) #draw t...