19
Перетворити байти в рядок
Я використовую цей код, щоб отримати стандартний вихід із зовнішньої програми: >>> from subprocess import * >>> command_stdout = Popen(['ls', '-l'], stdout=PIPE).communicate()[0] Метод communication () повертає масив байтів: >>> command_stdout b'total 0\n-rw-rw-r-- 1 thomas thomas 0 Mar 3 07:03 file1\n-rw-rw-r-- 1 thomas thomas 0 Mar 3 07:03 file2\n' Однак я …
2306
python
string
python-3.x