#teste from map214nw import * import math f= lambda x: 3*x + math.sin(x) - math.exp(x) df = lambda x : 3 + math.cos(x) - math.exp(x) x0=0.0 eps=0.00000002 raiz=newton_raphson(x0,f,df,eps)