I am trying to use and process the output from subprocess.check_output () in python, but since it is being returned by byte
for line in output:
Does not work. Is there a way that I can restore the output to the formatting of the string that it has when it prints to stdout? Or what is the best way to find and use this output?
Thanks in advance!
source share