📜  Python| os.getpid() 方法

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

Python| os.getpid() 方法

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

Python中的os.getpid()方法用于获取当前进程的进程 ID。

代码 #1:使用 os.getpid() 方法

# Python program to explain os.getpid() method 
    
# importing os module 
import os
  
# Get the process ID of
# the current process
pid = os.getpid()
  
  
# Print the process ID of
# the current process
print(pid) 
输出:
2699