circle_stats(radius) returning a tuple (area, circumference) using math.pi, both rounded to 2 decimals. Import the module — do not hardcode 3.14159.circle_stats(2)
(12.57, 12.57)
π×4 area and 2π×2 circumference both round to 12.57.
import math at the top.
Area is pi r²; circumference is 2 pi r.