当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。