时间:2021-05-22
概述
考虑这样一个问题,有hello.py脚本,输出”hello, world!”;有TestInput.py脚本,等待用户输入,然后打印用户输入的数据。那么,怎么样把hello.py输出内容发送给TestInput.py,最后TestInput.py打印接收到的”hello, world!”。下面我来逐步讲解一下shell的交互方式。
hello.py代码如下:
#!/usr/bin/pythonprint "hello, world!"
TestInput.py代码如下:
1.os.system(cmd)
这种方式只是执行shell命令,返回一个返回码(0表示执行成功,否则表示失败)
retcode = os.system("python hello.py")print("retcode is: %s" % retcode);输出:
hello, world!retcode is: 02.os.popen(cmd)
执行命令并返回该执行命令程序的输入流或输出流.该命令只能操作单向流,与shell命令单向交互,不能双向交互.
返回程序输出流,用fouput变量连接到输出流
输出:
result is: ['hello, world!\n']返回输入流,用finput变量连接到输出流
finput = os.popen("python TestInput.py", "w")finput.write("how are you\n")输出:
input string is: how are you3.利用subprocess模块
类似os.system(),注意这里的”shell=True”表示用shell执行命令,而不是用默认的os.execvp()执行.
f = call("python hello.py", shell=True)print f输出:
hello, world!0subprocess.Popen()
利用Popen可以是实现双向流的通信,可以将一个程序的输出流发送到另外一个程序的输入流.
Popen()是Popen类的构造函数,communicate()返回元组(stdoutdata, stderrdata).
输出:
input string is: hello, world!整合代码如下:
#!/usr/bin/pythonimport osfrom subprocess import Popen, PIPE, callretcode = os.system("python hello.py")print("retcode is: %s" % retcode);fouput = os.popen("python hello.py")result = fouput.readlines()print("result is: %s" % result);finput = os.popen("python TestInput.py", "w")finput.write("how are you\n")f = call("python hello.py", shell=True)print fp1 = Popen("python hello.py", stdin = None, stdout = PIPE, shell=True)p2 = Popen("python TestInput.py", stdin = p1.stdout, stdout = PIPE, shell=True)print p2.communicate()[0]#other way#print p2.stdout.readlines()声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
前言PowerShell能干什么呢?PowerShell首先是个Shell,定义好了一堆命令与操作系统,特别是与文件系统交互,能够启动应用程序,甚至操纵应用程序
PowerShell能干什么呢?就像序言中提到的那样,PowerShell首先是个Shell,定义好了一堆命令与操作系统,特别是与文件系统交互,能够启动应用程序
Shell也叫做命令行界面,它是*nix操作系统下用户和计算机的交互界面。Shell这个词是指操作系统中提供访问内核服务的程序。这篇文章向大家介绍Shell一些
在Linux、Windows、MacOS的命令行窗口或Shell窗口,执行python命令,启动Python交互式解释器。交互式解释器会等待用户输入Python
使用shell调用一个python文件,并向shell中传入参数,举例如下:p1='wang'p2='shuang'pythonpy文件$p1$p2这种情况可以