Chapter 3: Problem 24
How do you get the turtle's current heading?
Short Answer
Expert verified
Answer: To obtain and display the current heading of a turtle in Python, follow these steps:
1. Import the `turtle` module.
2. Create a turtle object.
3. Get the current heading of the turtle using the `heading()` function on the turtle object.
4. Print the value of the current heading.
Example code:
```python
import turtle
my_turtle = turtle.Turtle()
current_heading = my_turtle.heading()
print("Current heading:", current_heading)
turtle.done()
```
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.