函数定义一个动作或功能。
语法:
(关键字) (函数名) (形参) def greet_user(username): """'显示简单的问候语'""" (文档字符串) print("Hello, " + username) (函数体) greet_user('Maggy') (函数调用)(实参)