19
बाइट्स को एक स्ट्रिंग में बदलें
मैं बाहरी प्रोग्राम से मानक आउटपुट प्राप्त करने के लिए इस कोड का उपयोग कर रहा हूं: >>> from subprocess import * >>> command_stdout = Popen(['ls', '-l'], stdout=PIPE).communicate()[0] संवाद () विधि बाइट्स की एक सरणी लौटाती है: >>> command_stdout b'total 0\n-rw-rw-r-- 1 thomas thomas 0 Mar 3 07:03 file1\n-rw-rw-r-- 1 …
2300
python
string
python-3.x