4

When I run the same code with different piping, why output is different?

% python2.7  -c 'import sys; print sys.stdout.encoding'
UTF-8
% python2.7  -c 'import sys; print sys.stdout.encoding' | cat
None

1 Answer 1

7

Because when you use cat (or any pipe), you unbind the process from terminal. Python derives information about encoding from terminal settings.

You can force the encoding using enironment variable:

export PYTHONIOENCODING=utf-8
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.