def func1(): print('func1()正在被調用') def func2(): print('func2()正在被調用') func2() return 5 print(func1())