Ubuntu – Python cannot read Stdin input on Windows and reacts like an infinite loop
I have a problem that only appears on Windows 10 when I run a python script from the console (or a ProcessBuilder in Java) with an stdin input. When I run this code on Ubuntu : import sys print(sys.stdin.read()) With…