I want to learn Python. I'm already experienced with PHP, C++, Java. Very tiny bit of knowledge of PERL as well. I don't know where to start (online tutorials or actual book). Can anyone recommend me some good Python books that covers alot of material, or an online tutorial. Also, how would I go about running Python scripts if I don't own a web site.
How to run Python code without a website? Well, you need to install Python and then simply:
1 2 3 4 5
> python
Python 2.7.3 (default, Aug 1 2012, 05:14:39)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license"for more information.
>>> *** TYPE YOUR PYTHON CODE HERE ***