不能使用os.system()执行,需要用os.popen().

import os
content=os.popen('help').read()
print (content)