# 定义好函数之后,只表示这个函数封装了一段代码 # 如果不主动调用函数,函数不会主动执行 # 如需调用函数,通过函数名()即可完成对函数的调用 def say_hello(): print("hello1") print("hello2") print("hello3") say_hello()