Many scientists choose Python as first language, because it is easy to read and and has a vast amount of scientific libraries. Also it is open source and runs for free on Linux, Windows, Apple and more. For me it was also natural to choose Python here, because
http://www.arctic.io runs on Python, too.
What I especially like is only a few lines of code are needed to go from an URL of a data set to a plot. A flavour of Python is IPython which comes with batteries included and even plots right into the browser, if you go with IPython Notebooks. Which turns development into fun, since everything happens in one window - the browser.
Enough said, this is how it works:
Open this url:
http://nbviewer.ipython.org/urls/dl.dropbox.com/u/354885/notebooks/Arctic-Sea-Ice-V1.0.ipynb and scroll down.
It is an IPython Notebook rendered as a web page, you see the code and the result, for example this plot showing volume, including anomaly and climatology:

or thickness derived from area:

The notebook has the code to download, prepare and plot area, extent and volume. I didn't get fancy with plot decoration, you'll see the minimum to understand the data.
Basically a notebook consists of different cells of different type. They either contain code, markdown or raw text. In interactive mode you add/change the code in a cell and press ctrl-enter to run the cell. All output appears then below the current cell. That way you'll get results extremely fast. Beginners enjoy the help function, you create an empty cell and type e.g. os? and press ctrl-enter and get the os module help. Tab completion is available too. Notebooks include plots, code, etc. all in one file, so sharing them is easy.
You'll get IPYthon here:
http://ipython.org/install.html ,
here is nice notebook showing basic 2d/3d plotting:
http://nbviewer.ipython.org/urls/raw.github.com/jrjohansson/scientific-python-lectures/master/Lecture-4-Matplotlib.ipynb ,
here a ever growing galery of excellent notebooks
https://github.com/ipython/ipython/wiki/A-gallery-of-interesting-IPython-Notebooks and if you want to see them all try this google search:
https://encrypted.google.com/search?as_q=filetype%3AipynbIf you resist to install IPython, there are two other options, register at
https://www.wakari.io and work completely online at your own virtual machine (no cost so far) and
http://picloud.com offers 20 notebook hours/month for free including their number crunching cloud. The notebook above was made entirely at wakari.io, because the net connection is very fast.
I can answer basic question here or via PM - sorry nothing Windows or Apple specific. Currently I'm working on the ice mass balance buoys and the SMOS data set, expect more notebooks soon.
Edit: two more links: One of the IPython Notebook creators won the
2013 Free Software Foundation Award, the article gives some high level background info and
Windows Azure offers them too. There is also a nice video tutorial on the page. The free trial at Azure lasts 90 days.