📜  Python| os.system() 方法

📅  最后修改于: 2022-05-13 01:55:46.883000             🧑  作者: Mango

Python| os.system() 方法

Python中的OS模块提供了与操作系统交互的功能。操作系统,属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

os.system()方法在子shell 中执行命令(字符串)。该方法通过调用标准 C函数system()实现,具有相同的限制。如果 command 生成任何输出,则将其发送到解释器标准输出流。每当使用此方法时,都会打开操作系统的相应外壳并在其上执行命令。

示例 #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)
输出: