wei/unit_8/greeter.py

5 lines
118 B
Python

def greet_user(username):
"""简单的问候"""
print("hello, " + username.title() + "!")
greet_user('jesse')