Python| os.getsid() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError 。
Python中的os.getsid()
方法用于获取与指定进程 id 关联的进程的会话 id。
注意: os.getsid()
方法仅在 UNIX 平台上可用。
Syntax: os.getsid(pid)
Parameter:
pid: An integer value representing the process id of the process whose session id is required.
Return Type: This method returns an integer value which represents the session id of process associated with the specified process id.
代码: os.getsid() 方法的使用
# Python program to explain os.getsid() method
# importing os module
import os
# Get the session id
# of the current process
# using os.getsid() method
# 0 as pid represents the
# calling process
pid = 0
sid = os.getsid(pid)
# Print the session id
# of the current process
print("Session id of the current process:", sid)
pid = 10
# Get the session id
# of the process associated with
# the specified pid
# using os.getsid() method
sid = os.getsid(pid)
# Print the session id
print("Session id of the process whose process id is % d:" % pid, sid)
输出: