子进程 check_output 减少我的输出

我必须使用以下方法编写几个 C 程序在多个文件上运行所需的时间:


time ./program filename

到一个电子表格,我正在使用subprocess.check_output它stdout作为一个字符串。我应该得到一些类似的东西:


real    0m0.001s

user    0m0.001s

sys     0m0.000s

但我得到:


b'0.00user 0.00system 0:00.00elapsed ?%CPU (0avgtext+0avgdata 

1388maxresident)k\n0inputs+0outputs (0major+60minor)pagefaults 

0swaps\n'

我看到用户和系统时间,但它们在小数点后两位后被截断。有没有办法确保输出读取所有 3 个小数位?这是我的代码:


import xlwt

import subprocess


files = ('100KB.txt', '1MB.txt', '10MB.txt', '100MB.txt')

programs = ('./10kBuffer', './step2', './step3', './step4')


command = ['time', programs[0], files[0]]

out = subprocess.check_output(command, stderr=subprocess.STDOUT)

print(out)


猛跑小猪
浏览 198回答 1
1回答

哔哔one

那是因为 GNUtime使用默认格式字符串,更详细,但您需要-p选项。引用手册:默认格式字符串是:%Uuser %Ssystem %Eelapsed %PCPU (%Xtext+%Ddata %Mmax)k %Iinputs+%Ooutputs (%Fmajor+%Rminor)pagefaults %Wswaps当给出 -p 选项时,使用(便携式)输出格式:real %euser %Usys %S您还需要对输出进行解码,否则您将得到bytes而不是str,并且不会解释换行符。前任:>>> print(b'hello\nworld\n')b'hello\nworld\n'>>> print('hello\nworld\n')helloworld所以我会按原样修复您的代码:command = ['time', '-p', programs[0], files[0]]out = subprocess.check_output(command, stderr=subprocess.STDOUT)print(out.decode())编辑:另一个答案似乎有助于通过使用内置的 shell 来修复丢失的小数。您可以混合两个答案以获得所需的字符串输出,并带有足够的小数。请注意,除非您想对命令使用分析器,否则您似乎无法做得更好(请参阅如何获取 Python 程序的执行时间?)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python