语法

def关键字+函数名+参数

例: 

>>> def count(x):...     return x+3

调用函数

>>> count(1)4>>> count(11)14