From f1511ac60f6862a76994758a1bcba723672972e7 Mon Sep 17 00:00:00 2001 From: klinn Date: Mon, 9 Feb 2026 10:54:45 -0500 Subject: [PATCH] I defined what pi was. A value is something that it is and a name can Identify that value --- circle_area.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/circle_area.py b/circle_area.py index 99d33cb..d111939 100644 --- a/circle_area.py +++ b/circle_area.py @@ -4,5 +4,6 @@ print("This program will calculate the area of a circle.") radius = float(input("What is the circle's radius? ")) - +pi = 314.1592653 area = radius*radius * pi +print (area) \ No newline at end of file