требуется объект, подобный байтам, а не str

#python-3.8 Вопрос: Мой код: from subprocess import* import time p = Popen([r'E:HackingKien_mannowarVulnerabilitiessample(1)sampleVULNERABLE_o_NO.exe','f'],stdout=PIPE,stdin=PIPE, stderr=STDOUT) print ("Attach to the debugger and press Entern") input() size="10n" p.stdin.write(size) time.sleep(0.5) user_input="AAAAn" p.stdin.write(user_input) testresult = p.communicate()[0]…

Продолжить чтениетребуется объект, подобный байтам, а не str