Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 651 Bytes

File metadata and controls

33 lines (22 loc) · 651 Bytes

Circle Area Calculator

A simple Python application that calculates the area of a circle.

Features

  • Calculate the area of a circle given its radius
  • Uses the mathematical constant π (pi) for accurate calculations

Usage

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}")

Installation

  1. Clone this repository
  2. No additional dependencies required (uses Python's built-in math module)

Development

This project uses Python 3.x. To run the tests:

python -m pytest tests/

drive

marketing