I am wondering why i can use print to print a unicode string in my OSX Terminal.app, but if i redirect stdout to a file or pipe it to ‘more’, i get an UnicodeEncodeError.
How does python decides whether it prints unicode or throws an exception.
I am wondering why i can use print to print a unicode string in
Share
Because your terminal encoding is set correctly and when you redirect to a file (or pipe) the encoding is set to the default encoding (ASCII in python2.) try
print sys.stdout.encodingin both time (when you run your script as the terminal as stdout and when you redirect to a file) and you will see the difference.Try also this in your command line:
More Info can be found HERE: