當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.system()用法及代碼示例


python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

os.system()方法在子shell中執行命令(字符串)。該方法是通過調用標準C函數system()來實現的,並且具有相同的限製。如果命令生成任何輸出,則將其發送到解釋器標準輸出流。無論何時使用此方法,都將打開操作係統的相應 shell 並在其上執行命令。

用法: os.system(command)

參數:
command: 它是字符串類型,告訴執行哪個命令。

返回值:在Unix上,返回值是進程的退出狀態,在Windows上,返回值是係統 shell 程序在運行命令後返回的值。

範例1:
使用os.system()獲取計算機當前日期的方法

# Python program to explain os.system() method  
      
# importing os module  
import os  
  
# Command to execute 
# Using Windows OS command 
cmd = 'date'
  
# Using os.system() method 
os.system(cmd)
輸出:

範例2:
使用os.system()運行記事本的方法。

# Python program to explain os.system() method  
      
# importing os module  
import os  
  
# Command to execute 
# Using Windows OS command 
cmd = 'notepad'
  
# Using os.system() method 
os.system(cmd)
輸出:


相關用法


注:本文由純淨天空篩選整理自Rajnis09大神的英文原創作品 Python | os.system() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。