Hence I was writing this py program.
import subprocess
string="ihateminority.py"
process=subprocess.Popen(string,stdin=subprocess.PIPE,stdout=subprocess.PIPE)
res=process.communicate("3 5")
print res[0]
And I got this Window Error.
Obviously, the error came from the library, not me. Is there anyway to fix this, or just simply avoid id. (I cant use external library)