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

This commit is contained in:
cdonahue
2025-09-24 09:37:04 -04:00
parent 1803caca90
commit fc61a952ad

View File

@@ -2,6 +2,6 @@
# ------------
# By MWC contributors
my_name ="Chris"
my_name ="ChrisThe67"
greeting = "Hello, " + my_name
print(greeting)