定义:
函数是指将一组语句的集合通过一个名字(函数名)封装起来,想要执行这个函数只需要调用这个函数名
特性:
语法:
def hello: #定义函数名hello
print("Hello") #定义函数体
hello() #调用函数