Problem Description:
When Python is installed, the default encoding is ASCII, and when non-ASCII encoding occurs in the program, Python processing often reports such an error unicodedecodeerror: ' ASCII ' codec can ' t decode byte 0x?? In position 1:ordinal No in range, Python does not handle non-ASCII encoding, it is necessary to set its own default encoding python, generally set to UTF8 encoding format.
Query system default encoding you can enter the following command in the interpreter:
Python code
- >>>sys.getdefaultencoding ()
To set the default encoding, use:
Python code
- >>>sys.setdefaultencoding (' UTF8 ')
May be reported attributeerror: ' Module ' object has no attribute ' setdefaultencoding ' error, execution reload (SYS), in the execution of the above command can be passed smoothly.
At this point, the execution of sys.getdefaultencoding () will find that the encoding has been set to UTF8, but the code modified in the interpreter can only be guaranteed to be valid, after restarting the interpreter, it will be found that the encoding is reset to the default ASCII, Then there is no way to modify the program or the system's default code at once.
There are 2 ways to set the default encoding for Python:
A solution is to add the following code to the program:
Python code
- Import Sys
- Reload (SYS)
- Sys.setdefaultencoding (' UTF8 ')
Another option is to create a new sitecustomize.py under the Python lib\site-packages folder, with the following:
Python code
- # Encoding=utf8
- Import Sys
- Reload (SYS)
- Sys.setdefaultencoding (' UTF8 ')
Now restart the Python interpreter, execute sys.getdefaultencoding (), found that the encoding has been set to UTF8, after multiple restarts, the effect is the same, because the system when the Python boot, the file itself, set the system's default encoding, Without the need to manually add a solution to the code each time, is a solution.
But the problem description: According to the solution described above found that the play is Chinese garbled ...
Python coding problem: ' ASCII ' codec can ' t encode characters in position solution