Python Terms Document Vocabulary

12345678910111213141516171819
Across
  1. 4. a command you get to invent in name.
  2. 5. a symbol or container that holds a value.
  3. 8. changes Tracy’s trail thickness.
  4. 10. tells Tracy to draw a circle with a specified radius.
  5. 11. command that tells Tracy to turn left.
  6. 14. command that tells Tracy to turn right.
  7. 18. total explanation of code in plain English.
  8. 19. i in range() initialize a loop.
Down
  1. 1. starts filling in drawn shapes.
  2. 2. stops Tracy from leaving a trail.
  3. 3. a value that can be either true or false.
  4. 6. stops filling in drawn shapes.
  5. 7. moves Tracy to a specified coordinate.
  6. 9. determines how quickly Tracy will move through commands.
  7. 12. Loop lets us repeat a code as long as something is true.
  8. 13. a message in your code that explains what’s going on.
  9. 15. Statement lets you ask a question to the program and only run if the answer is true.
  10. 16. changes Tracy’s trail color.
  11. 17. Down Design a method for breaking our program down into smaller parts.
  12. 18. has Tracy start drawing a trail.