Files
lab_names/greetings.py
2026-02-06 11:13:08 -05:00

8 lines
138 B
Python

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