From d5003b655f523d4b8fb92dcbf9e4a6fb549e5ab9 Mon Sep 17 00:00:00 2001 From: rrahmany Date: Fri, 26 Sep 2025 09:27:31 -0400 Subject: [PATCH] i calculated the circle of the area --- circle_area.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circle_area.py b/circle_area.py index 513d6f7..ac3ec5a 100644 --- a/circle_area.py +++ b/circle_area.py @@ -4,3 +4,5 @@ print("This program will calculate the area of a circle.") radius = float(input("What is the circle's radius? ")) +area = 3.14*radius*radius +print(area) \ No newline at end of file