make a Python Program that works on JES, and that will show the exact things showing in the picture attached.For each turn, the turtle moves randomly from 1 to 3 spaces forward. - For each turn, there is a 50% chance (1 in 2) that the hare will decide to take a nap and thus will not move at all. If the hare does not nap, it will move between 1 and 8 spaces forward.Add two streams that run through the path that the race covers. The first stream runs from position 150 to 155 and the second stream runs from 300 to 305. The turtle can swim across the stream, so if it lands on say position 152, that’s ok. But the hare is … well, too lazy to swim. So, for instance, if the hare is at 147 and rolls a 4, it must wait because moving to 151 would put it in the stream. Use an if statement to compare hare’s position + movement amount to see if it would land in the stream. If so, it does not move (it loses its turn), otherwise you can move it. Show a message in the console when the hare is blocked because it can’t cross a stream.