A simple Python application that calculates the area of a circle.
- Calculate the area of a circle given its radius
- Uses the mathematical constant π (pi) for accurate calculations
from src.circle_calculator import calculate_circle_area
# Calculate area of a circle with radius 5
area = calculate_circle_area(5)
print(f"The area is: {area}")
- Clone this repository
- No additional dependencies required (uses Python's built-in math module)
This project uses Python 3.x. To run the tests:
python -m pytest tests/