14.7. Chapter 14 Exercises

  1. Fix 5 errors in the code below so that it runs correctly. It will draw red and black horizontal stripes.

    Show Comments
  2. The code below draws three peaks, vertically. Change 1 thing to make it draw three peaks horizontally. (Hint: You have to change something that’s in the body of the for loop)

    Show Comments
  3. Indent lines in the code below so that it runs correctly. It will stamp 4 turtles in two different colors at the corners of a square.

    Show Comments
  4. Fix the errors so the turtle stays in a straight vertical line without leaving the screen.

    Show Comments
  5. Fix 5 errors in the code below so that it runs correctly. It will draw a repeating pattern from left to right until it hits the width of the window and then will move back to the left side of the window to continue the pattern.

    Show Comments
  6. The code currently draws 5 horizontal lines of alternating colors. Change it so that it draws 5 vertical lines of alternating colors.

    Show Comments
  7. Change the code below to use if and else. Also fix any errors. You will need to change 3 lines. The code will draw random connected lines in alternating colors of red and black.

    Show Comments
  8. Fix the errors in the code so it alternates between printing a horizontal yellow line and a vertical black line.

    Show Comments
  9. Fix the indention so that the code runs correctly. Two turtles will move towards each other and then turn around and move away from each other.

    Show Comments
  10. Change and fix the code below so that it draws random, but connected black and red lines (it should look like scribbling) only in the bottom right half of the drawing window.

    Show Comments
  11. The following code stamps a circle of turtles. Change the following code to use a different color per stamp and use at least 3 colors. You can use a counter and reset the counter to 0 after it reaches the number of colors (i.e. use a for loop and change color based off divisibility of each number). Use if, elif, and else.

    Show Comments
  12. Add to the code so that num is a random number between 1 and 3 (inclusive), and change the if clauses to be if, elif, and else. The code should draw random lines with 3 different colors based off the value of num.

    Show Comments
  13. The following code stamps turtles in a spiral. Change the code below to cycle through at least 3 colors. Use if, elif, and else.

    Show Comments
  14. The code currently makes the two turtles just draw a circle. Fix the errors on line 13 so that the turtles move towards each other and then turn around and move away from each other.

    Show Comments
  15. The following code draws vertical stripes alternating between red and black. Change and add code below to use 5 different colors. Use y % 5 instead of y % 2 to get 5 possible values.

    Show Comments
  16. Complete and add to the turtleLoop procedure so that when the turtles collide, they move away, then turn so that they move in the same direction. It should look like a mirror image divided across the vertical axis.

    Show Comments
  17. Write a function takes a number and returns a color. It will return ‘yellow’ if the number modulus 3 is 0, ‘blue’ if it is 1, and ‘green’ if it is 2.

    Show Comments
  18. Write a procedure that takes in any number as the first parameter and a turtle as another parameter. The procedure should determine if the number is even or odd. If it is even have the turtle go right. If it is odd, have it go left. The procedure should get a random value between 1 and 2 (inclusive) and assign a color based on that number.

    Show Comments
  19. Write code that draws a pattern with the turtle with at least 3 different colors used. The code must have a for loop and must have a if statement inside the for loop that changes the color.

    Show Comments
  20. Write code that uses 2 turtles and a for loop to get a range of numbers. You should change the color of the based off if the number from the for loop is even or odd. The two turtles should move towards each other but turn away and move when they are about to intersect.

    Show Comments
You have attempted of activities on this page