Crontab-Python3 Error: UnicodeEncodeError: ‘ascii’ codec can’t encode characters in position 0–3: ordinal not in range(128)
Crontab wrongly use ASCII rather than UTF-8 coding Chinese string. To solve this problem:
crontab -e
then prepend a LANG directive to the script command.
LANG=zh_CN.UTF-8