From 33bdad566fc9efdfaec212a51fa4fc16c267a5fe Mon Sep 17 00:00:00 2001 From: jbayati Date: Tue, 23 Sep 2025 09:31:19 -0400 Subject: [PATCH] a name is what we call something while a value is a definition we need to know the difference in our everyday life because it's in everyday language. --- circle_area.py | 5 +++++ greetings.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/circle_area.py b/circle_area.py index 513d6f7..bf8d6b8 100644 --- a/circle_area.py +++ b/circle_area.py @@ -4,3 +4,8 @@ print("This program will calculate the area of a circle.") radius = float(input("What is the circle's radius? ")) + +area = 3.141592653*radius*radius + +print(area +) \ No newline at end of file diff --git a/greetings.py b/greetings.py index 2d878a6..384ecb8 100644 --- a/greetings.py +++ b/greetings.py @@ -2,6 +2,6 @@ # ------------ # By MWC contributors -my_name ="Chris" +my_name ="Jacob" greeting = "Hello, " + my_name print(greeting)