Python| os.system() 方法
Python中的OS模块提供了与操作系统交互的功能。操作系统,属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
os.system()
方法在子shell 中执行命令(字符串)。该方法通过调用标准 C函数system()实现,具有相同的限制。如果 command 生成任何输出,则将其发送到解释器标准输出流。每当使用此方法时,都会打开操作系统的相应外壳并在其上执行命令。
Syntax: os.system(command)
Parameter:
command: It is of string type that tells which command to execute.
Return Value: On Unix, the return value is the exit status of the process and on Windows, the return value is the value returned by the system shell after running 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)
输出:
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。