函数的嵌套调用 函数内部,调用其他函数。 调用之后,又将程序控制权返回给调用者,接着继续运行。 程序实例1: def create_building(): create_room() create_stair() def create_room(): pri