8 lines
229 B
Python
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)
|