Files
lab_names/greetings.py
2025-09-25 09:56:09 -04:00

8 lines
140 B
Python

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