please code in python refer to the answer of this question: https://www.bartleby.com/questions-and-answers/computer-science-question/a56d0094-dff5-4e44-a09c-2ff222418a5d Alter your program from the previous problem so that it continues until the student has actually escaped the bounds of the window. Use the xcor and ycor turtle functions, and assume that the corners of the window are at (-300, -300) and (300, 300) - this is usually close-ish to the size of the window (if it’s totally off feel free to adjust the numbers). You’re required to use a while loop to do this using an appropriate loop condition: using break or return to stop the loop early is not allowed. Count the number of blocks walked (how many times the turtle moved forward 30) and, when the turtle reaches the window edge, terminate the while loop, and display the total number of blocks walked at the middle of the window. You can use turtle.write() for this: for example try the following: >>> turtle.write(349, font=("Arial", 20, "normal")) Here is an example of what the turtle graphics window might look like after execution:
please code in python
refer to the answer of this question:
https://www.bartleby.com/questions-and-answers/computer-science-question/a56d0094-dff5-4e44-a09c-2ff222418a5d
Alter your program from the previous problem so that it continues until the student has actually escaped the bounds of the window. Use the xcor and ycor turtle functions, and assume that the corners of the window are at (-300, -300) and (300, 300) - this is usually close-ish to the size of the window (if it’s totally off feel free to adjust the numbers).
You’re required to use a while loop to do this using an appropriate loop condition: using break or return to stop the loop early is not allowed.
Count the number of blocks walked (how many times the turtle moved forward 30) and, when the turtle reaches the window edge, terminate the while loop, and display the total number of blocks walked at the middle of the window. You can use turtle.write() for this: for example try the following:
>>> turtle.write(349, font=("Arial", 20, "normal"))
Here is an example of what the turtle graphics window might look like after execution:
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 1 images