sh_07_函数的嵌套调用 def test1(): print("*" * 50) def test2(): print("-" * 50) # 函数的嵌套调用 test1() print("+" * 50) test2() 来源:博客园作者:王少寒链接:https://www.cnblogs.com/shaohan/p/11519312.html 标签 函数调用 嵌套 博客园