We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bpython:
bpython
>>> import sys >>> sys.stdin.encoding Traceback (most recent call last): File "<input>", line 1, in <module> AttributeError: 'FakeStdin' object has no attribute 'encoding'
python proper:
python
>>> import sys >>> sys.stdin.encoding 'UTF-8'
bpython:pythonproper: