Chapter 2: Problem 38
What command would you use to change the background color of the turtle's graphics window to black?
Short Answer
Expert verified
Answer: To change the background color of the turtle graphics window to black, you need to import the turtle module, and then use the `bgcolor()` function. The complete code is:
```python
import turtle
turtle.bgcolor('black')
turtle.done()
```
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.