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.
This commit is contained in:
jbayati
2025-09-23 09:31:19 -04:00
parent 0dd0edc39c
commit 33bdad566f
2 changed files with 6 additions and 1 deletions

View File

@@ -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
)

View File

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