Python/Windows: Difference between revisions
< Python
Jump to navigation
Jump to search
(Created page with "<source lang="python"> import sys import codecs sys.stdout = codecs.getwriter('utf8')(sys.stdout) sys.stderr = codecs.getwriter('utf8')(sys.stderr) </source>") |
(No difference)
|
Latest revision as of 01:35, 27 April 2020
import sys
import codecs
sys.stdout = codecs.getwriter('utf8')(sys.stdout)
sys.stderr = codecs.getwriter('utf8')(sys.stderr)