Ejemplo simple:
Código Python:
Ver originaldef multiplicar(x, y):
return x * y
def sumar(x, y):
return x + y
resultado = multiplicar(3, 2) # 6
print resultado
nuevo_resultado = sumar(resultado, 10) # 16
print nuevo_resultado
Deberías de leer sobre funciones.