Curso_Intensivo_de_PYTHON/chapter_08/greet_users.py
2023-06-02 17:22:53 +02:00

8 lines
229 B
Python

def greet_users(names):
"""Print a simple greeting to each user in the list."""
for name in names:
msg = f"Hello, {name.title()}!"
print(msg)
usernames = ['hannah', 'ty', 'margot']
greet_users(usernames)