From fc61a952ad48d9a94eb9e186fd5a69a5e97be485 Mon Sep 17 00:00:00 2001 From: cdonahue Date: Wed, 24 Sep 2025 09:37:04 -0400 Subject: [PATCH] A name is a short term we use to define something while a value is the definition itself. This is used in everday life by our common langauge. In coding the name is basically the same thing being that the name is a short hand for a longer command while the value is the command that needs to be run --- greetings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greetings.py b/greetings.py index 2d878a6..55890f4 100644 --- a/greetings.py +++ b/greetings.py @@ -2,6 +2,6 @@ # ------------ # By MWC contributors -my_name ="Chris" +my_name ="ChrisThe67" greeting = "Hello, " + my_name print(greeting)