Alittle confusing

A value stays the same just like a person but there name doesnt define the value(person)

Variable can help with using code words to make things easier to define a big code.
This commit is contained in:
klinn
2026-02-06 11:13:07 -05:00
parent 5cbf51b4ac
commit 806c5713e2
4 changed files with 11 additions and 1 deletions

View File

@@ -2,6 +2,6 @@
# ------------
# By MWC contributors
my_name ="Chris"
my_name = input("What is your name? ")
greeting = "Hello, " + my_name
print(greeting)