In MVC, View has the UI part, which calls the controller which in turn calls the model & model in turn fires events back to view.
In MVP, View contains UI and calls the presenter for implementation part. The presenter calls the view directly for updates to the UI part.
Model which contains business logic is called by the presenter and no interaction whatsoever with the view. So here presenter does most of the work :)