This error occurs when you are trying to connect to MySQL database but the MySQL service is not running/available. If you have not installed, first install MySQL server using this command:
$ sudo apt-get update
$ sudo apt-get install mysql-server
And then to start MySQL service, run any one of the following commands:
$ sudo service mysql start
or
$ sudo /etc/init.d/mysql start
And then run your code, it should work