CronJob Not running
Solution 1:
You should redirect both standard input and standard error from the crontab execution like below:
0 2 * * * /usr/bin/python3 /home/user/folder1/folder11/script2.py > /tmp/script2.log 2>&1
Then once its failed to run have a look at the /tmp/script2.log for the reason(s).