Python : Fix SyntaxError: Non-ASCII character in file, but no encoding declared
Don't really know why Python couldn't handle non-ASCII characters in the source code well by default. Encounter a syntax error in while trying to print out some non-ASCII characters ( Chinese ) with Python.
chinese.py
print " 我爱你"
> python chinese.py
The interpreter throws out this error message :
File "utf8.py", line 1 SyntaxError: Non-ASCII character '\xe6' in file utf8.py on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
To fix, this problem. Include this line at the beginning of the your Python source code.
# - *- coding: utf- 8 - *-
After modification :
# - *- coding: utf- 8 - *-
print " 我爱你"
and now > python chinese.py
should print out :
我爱你
Hope this helps!
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+9.4k Golang : How to get ECDSA curve and parameters data?
+17.1k Golang : Covert map/slice/array to JSON or XML format
+22.1k Fix "Failed to start php5-fpm.service: Unit php5-fpm.service is masked."
+4.8k Facebook : How to place save to Facebook button on your website
+12.7k Golang : Exit, terminating or aborting a program
+6.2k Golang : Debug with Godebug
+14.2k Golang : syscall.Socket example
+22.4k Golang : Read directory content with filepath.Walk()
+6.1k Golang : Convert Chinese UTF8 characters to Pin Yin
+4.7k MariaDB/MySQL : How to get version information
+26.8k Golang : How to check if a connection to database is still alive ?