Dalam Python, anda boleh menggunakan modul subproses untuk membuka cangkerang luaran: 1. Import modul subproses 2. Cipta objek Proses 3. Baca output 4. Dapatkan kod keluar.
Cara membuka cangkerang dalam Python
Dalam Python, anda boleh menggunakan modul subprocess
模块打开一个外部 shell。以下是详细步骤:
1. 导入 subprocess 模块
<code class="python">import subprocess</code>
2. 创建 Process 对象
创建 subprocess.Popen
对象,指定要启动的 shell 命令和参数。
<code class="python"># 打开 bash shell process = subprocess.Popen(['bash'], shell=True) # 打开 cmd shell(Windows) process = subprocess.Popen(['cmd'], shell=True)</code>
3. 读取输出
使用 communicate()
方法读取 shell 命令的输出。
<code class="python"># 读取标准输出和标准错误输出 output, error = process.communicate()</code>
4. 获取退出代码
使用 returncode
属性获取 shell 命令的退出代码。
<code class="python"># 获取退出代码,0 表示成功 exit_code = process.returncode</code>
示例:
<code class="python">import subprocess # 打开 bash shell 并执行 ls 命令 process = subprocess.Popen(['bash', '-c', 'ls'], shell=True) # 读取输出 output, error = process.communicate() # 打印输出 print(output.decode('utf-8')) # 获取退出代码 exit_code = process.returncode</code>
注意:
shell=True
参数允许以 shell 模式启动,使 shell 能够解释命令中的特殊字符,如管道和重定向。stdin
、stdout
和 stderr
subprocess.Popen
dan nyatakan arahan dan parameter shell. untuk dimulakan. 🎜rrreee🎜🎜3 Baca output🎜🎜🎜Gunakan kaedah communicate()
untuk membaca output arahan shell. 🎜rrreee🎜🎜4. Dapatkan kod keluar🎜🎜🎜Gunakan atribut returncode
untuk mendapatkan kod keluar arahan shell. 🎜rrreee🎜🎜Contoh: 🎜🎜rrreee🎜🎜Nota: 🎜🎜shell=True
parameter membenarkan untuk bermula dalam mod shell, membolehkan shell mentafsir aksara khas dalam arahan, seperti sebagai paip dan ubah hala. 🎜stdin
, stdout
dan stderr
. 🎜🎜Atas ialah kandungan terperinci Bagaimana untuk membuka shell dalam python. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!