There is in fact a package option for this: if you pass noBBpl to mathpazo, then its blackboard bold fonts are not loaded. That also means you have to load the AMS ones separately, but that just means using amssymb, which is simpler than defining another symbol font alphabet:
\documentclass{article}
% these two \usepackage commands make it work
\usepackage{amssymb}
\usepackage[noBBpl]{mathpazo}
\usepackage[scaled=.95]{helvet}
\usepackage{courier}
\begin{document}
In this document,
\begin{itemize}
\item $\mathbb N$ will denote the natural numbers,
\item $\mathbb Z$ will denote the integers,
\item $\mathbb Q$ will denote the rational numbers,
\item $\mathbb R$ will denote the real numbers, and
\item $\mathbb C$ will denote the complex numbers.
\end{itemize}
\end{document}

\mathbbalphabet here at ams that it's nice to hear it called "beloved". thanks!