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 read either Learn Python the Hard Way or Think Python (a new edition of the older book How to Think Like a Computer Scientist: Learning With Python) and if you want a Python book for experienced programmers, then you want Dive Into Python
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/