You should have written something like
*/2 * * * * /usr/bin/python /path/Daily_visits.py
or you should have placed the script in the very same folder.
UPDATE
The status of the cron service was stopped since you are working on a Google Cloud Shell and not on a proper virtual machine.
As @MertSimsek told you it was enough to start the cron service and then everything works as expected.
$ sudo service cron start
Notice that since merely the home of the user is persistent all the change will be lost after you close it and open it again.
It is intended as a tool to run commands/small scripts not to develop and to be used as a normal virtual machine
Cloud Shell instances are provisioned on a per-user, per-session basis. The instance persists while your Cloud Shell session is active and terminates after a hour of inactivity.
crontab -ldo you visualise an entry regarding the cronjob you have just created?