Simon Willison’s Weblog

Subscribe

What are some apps, problems you would suggest to solve a new python developer?

7th November 2012

My answer to What are some apps, problems you would suggest to solve a new python developer? on Quora

The best way to learn python in my opinion is using the interactive prompt. Install ipython (a massive improvement on the standard python shell) and use it to interactively solve some simple tasks—things like downloading a CSV file from the web using the urllib library, parsing it with the csv module, then poking around in the data using python list comprehensions and saving some of the results out to a JSON file.