首页 > 文章列表 > python函数嵌套调用的实现

python函数嵌套调用的实现

python函数
220 2022-08-07

说明

1、在一个函数中又调用了另一个函数,调用函数test2,它又调用函数test1。

2、调用test1函数时,首先要完成函数test1中的所有任务。

返回调用test2中函数test1的位置,然后继续后续代码的执行。

实例

def test1():
    print("*" * 50)
    print("test1~~~")
    print("*" * 50)
 
    
def test2():
    print("-" * 50)
    print("test2~~~")
    test1()
    print("-" * 50)
 
test2()

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。