代码
提交代码
def test(): print('Before return') return print('After return') # 这条语句不会被执行 print('Before test') test() print('After test')
运行结果