Files
lab_names/greetings.py
2025-09-24 09:55:46 -04:00

8 lines
139 B
Python

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