def euler(n,h): x=0 y=1 L=[(x,y)] for k in range(1,n+1): x=x+h y=(1+h)*y L.append((x,y)) return(L)