generated from mwc/lab_names
Name is a school lunch menu and each day food that are served differ. Pizza with some salad is value. I don't know much about programming, but I guess names are useful because value of each name can change often and name can be used to avoid typing values multiple times. It's like Excel spreedsheet?!
8 lines
138 B
Python
8 lines
138 B
Python
# greetings.py
|
|
# ------------
|
|
# By MWC contributors
|
|
|
|
my_name = input("what is your name?")
|
|
greeting = "Hello, " + my_name
|
|
print(greeting)
|