I think a key omission from the discussion so far is the ability to replicate results. I have increasingly little trust in results that aren't independently replicated, but tremendous faith in results that come from public data and transparent processes.
This has, I think, two implications for your selection of tools. First of all, to the extent possible, they should be programmatic - no manually changing values in Excel or making plots by hand in some webservice that will go out of business three weeks later. Start with the original data and show, start to finish, how you arrived at your results.
Secondly, your tools should be free (ideally, both open-source and cost-free). This maximizes the ability of anyone to review your work, not just those with the financial resources to do so.
The aforementioned Python and SQL are obviously good languages to know for this; Python has plenty of data-wrangling abilities and lots of libraries to do about whatever you'd need; SQL is basically the lingua franca of data, and will be useful to you in any number of (free and commercial) data applications.
I'd also recommend R. R is an open-source, free, domain-specific language for statistics (which, ahem, is what "data journalism" turns into when it's not in a newspaper). It's built around all of these concepts: data acquisition, cleaning, manipulation, plotting, analysis, and reproducibility. It has packages for nearly anything you'd like: plotting, data manipulation, time series, mapping, database interfaces... It rocks, and its StackOverflow community is quite good.
Check out this analysis of the Wikileaks Iraq logs by Mike Dewar for a short and nigh-perfect example of mingling Python and R to create interesting and reproducible analysis.