Home > Article > Backend Development > How to Set the Default Output Encoding in Python 3?
Encoding sys.stdout in Python 3
Question:
How do you set the default output encoding in Python 3, given that the method for Python 2 no longer works due to its output being in bytes rather than str?
Answer:
To set the encoding of sys.stdout in Python 3, you can use the reconfigure() method introduced in Python 3.7. This method allows you to specify the encoding, as well as handle encoding errors if desired:
sys.stdout.reconfigure(encoding='utf-8') sys.stdout.reconfigure(encoding='utf-8', errors='ignore') # Ignore encoding errors
By utilizing reconfigure(), you can effectively change the encoding of your standard output to UTF-8 or any other encoding supported by Python.
The above is the detailed content of How to Set the Default Output Encoding in Python 3?. For more information, please follow other related articles on the PHP Chinese website!