python原样输出linux信息

Posted 坚强的小蚂蚁

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python原样输出linux信息相关的知识,希望对你有一定的参考价值。

#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
import subprocess


# 与在命令窗口执行显示效果相同,如有彩色输出可保留,但不能返回结果
def run(command):
subprocess.call(command, shell=True)


# 实时输出但不可显示彩色,可以返回结果
def sh(command, print_msg=True):
p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
lines = []
for line in iter(p.stdout.readline, b\'\'):
line = line.rstrip().decode(\'utf8\')
if print_msg:
print(">>>", line)
lines.append(line)
return lines


print(\'run():\')
run("ping www.baidu.com")
print(\'\\n\\nsh():\')
sh("ping www.baidu.com")

以上是关于python原样输出linux信息的主要内容,如果未能解决你的问题,请参考以下文章

python 输入一个字符,是小写转换为大写,大写转换为小写,其他字符原样输出

python中打印输出date信息

python - 输入与输出

python3之格式输入输出

Linux后台运行python程序并输出到日志文件

为啥PYTHON中hellopython要加感叹号