Python| os.getpid() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
Python中的os.getpid()
方法用于获取当前进程的进程 ID。
Syntax: os.getpid()
Parameter: Not required
Return Type: This method returns a integer value denoting process ID of current process. The return type of this method is of class ‘int’.
代码 #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