Files
lab_names/greetings.py
klinn 806c5713e2 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.
2026-02-06 11:13:07 -05:00

8 lines
139 B
Python

# greetings.py
# ------------
# By MWC contributors
my_name = input("What is your name? ")
greeting = "Hello, " + my_name
print(greeting)