Oops, sorry about that, add the line "PYTHONPATH=/usr/bin/python" to the file .bashrc and if the file isn't there just create it.
And I was told to use "#! /usr/bin/env python" rather than "#! usr/bin/python". Why is the latter better?
Not sure about the first one? I'm not a python expert but that may be for Mac or BSD or inside some other code or something. What you are doing is telling BASH where to find python for that file. Also, remember it is "#!/usr/bin/python" no quotes or spaces.
edit
What the comments at the top of the file are telling you is that there are other places to set variables depending on whether you want them to be gobal (all users) or user specific or used by bash or ... etc., etc.