def add_numbers(x, y): total = x + y return total print("这个将不会被打印") print(add_numbers(4, 5)) 结果 >>> 9 >>>
0