标签:使用 os strong 文件 ar div line python
1. python中使用shell命令有多种方法,我自己觉得比较好用的是用commands模块:
import commands
a,b = commands.getstatusoutput("ls -Al")
a是退出状态(int类型), b是shell 命令的输出结果
python -> shell:
1.环境变量
import os
var=123或var=‘123‘
os.environ[‘var‘]=str(var) #environ的键值必须是字符串
os.system(‘echo $var‘) 或
a,b = commands.getstatusoutput("$var")
2.字符串连接
3.通过管道
4.通过文件
5.通过重定向标准备输出
shell -> python:
1.管道
2.
3.文件
python中如何使用shell命令, 及python 与shell 中的变量相互通信,布布扣,bubuko.com
python中如何使用shell命令, 及python 与shell 中的变量相互通信
标签:使用 os strong 文件 ar div line python
原文地址:http://www.cnblogs.com/sunshore/p/3906935.html