Answers for "standard streams with python3"

0

standard streams with python3

>>>for f in (sys.stdin, sys.stdout, sys.stderr): print f
...
<open file '<stdin>', mode 'r' at 762210>
<open file '<stdout>', mode 'w' at 762270>
<open file '<stderr>', mode 'w' at 7622d0>
Posted by: Guest on October-14-2021

Python Answers by Framework

Browse Popular Code Answers by Language