vote up 15 vote down star
24

For a beginner's perspective, can you answer the following:

  • Best Tool(s) for Python development (e.g. NotePad, Vim)
  • Best Book to get Started
  • Best Website for Python beginner
  • Best Problem Domain to do a sample project (what is Python-based solutions best suited for?)
flag

54% accept rate

13 Answers

vote up 19 vote down check

Best Tool(s): this depends on your preference as far as editors go. I prefer a simple editor with syntax highlighting and a few other features such as regular expression find/replace. So I'd recommend nedit for Linux or Notepad++ for Windows. Textmate for a Mac is supposed to also be really good. If you prefer a feature-heavy IDE then I recommend Eclipse with the PyDev plugin.

Best Book: if you're a beginning to programming then you should take "How to Think Like a Computer Scientist: Learning With Python" (http://openbookproject.net/thinkCSpy/index.xhtml) and if you want a Python book for experienced programmers, then you want "Dive Into Python" (http://www.diveintopython.org/toc/index.html)

Best Website: the books mentioned above are both freely available online. However, the official Python tutorial is a good reference for anyone learning the language, since it's well organized and explains Python's language syntax (how do if statements work, how do exceptions work, etc) and built-in types and classes (how do I perform common list operations, how do I deal with dates and times, etc). You can find this at http://docs.python.org/tut/

Best Problem Domain: Python is used by Google, Industrial Lights and Magic, The Washington Post, NASA, and everything in between. It's a general purpose programming language and is well suited to most tasks. However, it is increasingly popular with web developers, so you might want to try building a web application with Django once you familiarize yourself with the language: http://www.djangoproject.com/

link|flag
vote up 1 vote down
  • Best Tool(s) for Python development: just started with VIM, later with Eclipse
  • Best Book to get Started: Python Cookbook
  • Best Website for Python beginner: http://docs.python.org/3.0/tutorial/
  • Best Problem Domain to do a sample project: pythonchallenge.com
link|flag
vote up 0 vote down

I'm writing a Intro to Programming book using Python. It's an ebook and will be free, if cost is a concern.

link|flag
vote up 0 vote down

Best Tool: SPE. It's cross-platform, includes many handy tools, and has wxGlade built-in so you can quickly make graphical programs if you want

Best Book: I'm partial to Python, How to Program from Deitel Publishing. Though it's old (uses Python v2.2) it is written as a college textbook so not only is it pretty comprehensive, it also includes a lot of quizes and tests to help you learn. A second edition is supposed to be coming out next January. Learning Python from O'Reilly is also a great book, covering a lot more "esoteric" topics that you would expect in a computer science course.

Best Website: I would have to plug the tutorial that I wrote a few years ago. It may not be the best but it was selected for use as a college introductory course. Beyond that, the Python.org website and Dive into Python are natural picks.

Best Problem Domain to do a sample project: Scratch an itch. I learned Python to make a game. Find something you are interested in creating and just do it. Make a simple web browser, create a database to track your car's gas mileage, or maybe ask friends or family if there is something they would like you to make for them.

link|flag
vote up 1 vote down

If you already know how to code:

http://rgruet.free.fr/PQR2.3.html

I think this is a great quick reference.

link|flag
vote up 1 vote down

Ok, so almost everything has already been stated, but two of my absolute favorites have yet to be: Python Pocket Reference (Third Edition is the most recent as of this post) by O'Reilly, and the Python Challenge. I have to also throw a vote in support of the wonderful Dive Into Python which everyone I know who has learned python adores, and the almighty iPython.

Honestly I could never fully stomach the giant tome which is O'Reilly's Programming Python though others I know have said good things about it. And though some people (like bruceatk proves) find Learning Python a good way to, well, learn python, but I could never really get engaged by it.

Here is where my two cents come into play. The Python Pocket Reference is a wonderful offline guide for all the builtin python functionality and a good bit of the core modules. And the damn thing is small enough to slide in a back pocket to boot (thus the Pocket Reference part I guess...). And since I like riddles & logic puzzles, the Python Challenge was a great way to get me engaged. These coupled with comp.lang.python, Dive Into Python, and the #python channel on irc.freenode.net, really got me started.

One last note on The Python Challenge. You mention "The Best Problem Domain" to get familiar with python using.... The Python Challenge is a very well done way of introducing programmers to the plethora of python modules. It shows you everything from pickle to basic image manipulation.

I hope this is of some help. (Oh, and one last resource, it's called StackOverflow).

link|flag
vote up 0 vote down

To get started, I think IDLE and the interactive command window is enough.

For GUI developement (wxPython), Boa Constructor does the job, it has a GUI designer a la Delphi.

Books: beside DiveIntoPython (already mentioned), I can recommend wxPython in Action for wxPython GUI developement and Python Programming on Win32, somewhat old but with many advanced topics well covered.

link|flag
vote up 1 vote down

I learned Python from the python tutorial and the free, online ebook Dive Into Python. A great second book is Programming Python, which will teach you more about the standard library, including threading, networking, GUI programming with Tk.

link|flag
vote up 0 vote down

I use TextPad, so I can't recommend a Python IDE. Most of my Python programs are short utility programs to accomplish specific functions.

I used Learning Python from O'Reilly to learn Python. I also have Programming Python from O'Reilly.

I have Python mainly to manipulate XML. It is also the scripting language in Paint Shop Pro. It can be used for most anything though.

I really like Python. The only thing I don't like is that indention is such a key part of the program structure. This means it is really important not to be moving your source around between different programs that handle tabs/spaces differently. It's also important that you are consistent in your use of tabs/spaces to indent.

link|flag
vote up 0 vote down

All you really need is the python site (http://python.org)

The little IDE they have (I think its' called python interactive? edit- its' IDLE - thanks @Baltimark) is pretty good. Basically a text editor that you can execute code in. I am a big fan of learning any new language in a text editor so that you don't get spoiled by the little things the IDE does automagically for you.

The docs on the website are pretty good for teaching too, you could start here: http://docs.python.org/tut/node3.html

link|flag
vote up 1 vote down

The greatest tool to start python might well be IPYTHON. That's just an interactive shell.

Its way better than the original shell. It's in color, it supports autocompletion on your objects, hitting tab will lists all their methods, and have a nice way to navigate in your history.

It's a must if you just started Python.

For the documentation, the python website is great.

For the IDE, Eclipse now has a plugin called pydev which is really good... But the editor you use is not really critical.

link|flag
vote up 2 vote down

Google AppEngine will allow you to create websites using Python. It's a good way to start learning Python with demonstrable world-visible projects.

link|flag
vote up 5 vote down

Eclipse IDE or even the quick and easy IDLE which comes with Python are great tools.

DiveIntoPython is a nice HTML based tool to get Started.

If you're looking for math based problems, check out Project Euler. It's got a lot of nice, simple problems that can really get you going on using some of the built in types, how to define functions, etc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.