sh_07_函数的嵌套调用
sh_07_函数的嵌套调用
def test1(): print("*" * 50) def test2(): print("-" * 50) # 函数的嵌套调用 test1() print("+" * 50) test2()
sh_07_函数的嵌套调用
def test1(): print("*" * 50) def test2(): print("-" * 50) # 函数的嵌套调用 test1() print("+" * 50) test2()