Chapter 6: Problem 16
Write a statement that uses a math module function to convert 45 degrees to radians and assigns the value to a variable.
Short Answer
Expert verified
Answer: The Python code to convert a 45-degree angle into radians using the math module is:
```python
import math
angle_in_radians = math.radians(45)
```