19
Konversi byte ke string
Saya menggunakan kode ini untuk mendapatkan output standar dari program eksternal: >>> from subprocess import * >>> command_stdout = Popen(['ls', '-l'], stdout=PIPE).communicate()[0] Metode berkomunikasi () mengembalikan array byte: >>> 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' Namun, saya …
2310
python
string
python-3.x