def test1():
print("*" * 50)
def test2():
print("-" * 50)
test1()
print("+" * 50)
test2()
python函数:函数的嵌套调用
最新推荐文章于 2025-02-21 19:52:33 发布
def test1():
print("*" * 50)
def test2():
print("-" * 50)
test1()
print("+" * 50)
test2()