Fastest stdin/out IO in python 3?
Probably not. In the end, print will call sys.stdout.write(). But since print is a built in function, probably implemented in C, it might even be faster than calling sys.stdout.write(). Since all IO has to go through the object which sys.stdout returns, that's the bottleneck. The same is true for sys.stdin.
https://stackoverflow.com/questions/7982146/fastest-stdin-out-io-in-python-3