带有返回值的函数: def add(a, b): c = a+b return c t = add(8, 9) print(t) 上面的例子中,c为函数add的返回值。 注意: 所谓“返回值”,就是程序中函数执行完成后,最后给调用者的结果。