You can sort of do it using the brown corpus, though it's out of date (last revised in 1979), so it's missing lots of current words.
import nltk
from nltk.corpus import brown
from nltk.probability import *
words = FreqDist()
for sentence in brown.sents():
for word in sentence:
words.inc(word.lower())
print words["and"]
print words.freq("and")
You could then cpickle the FreqDist off to a file for faster loading later.
A corpus is basically just a file full of sentences, one per line, and there are lots of other corpora out there, so you could probably find one that fits your purpose. A couple of other sources of more current corpora: Google, American National Corpus.
You can also suppsedly get a current list of the top 60,000 words and their frequencies from
the Corpus of Contemporary American English