wei/unit_8/greet_users.py

6 lines
152 B
Python

def greet_user(names):
for name in names :
print("Hello, " + name.title() + "!")
username = ['tom', 'zhangsan', 'wei']
greet_user(username)