Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
如果文件名和路徑無效或無法訪問,或者具有正確類型但操作係統不接受的其他參數,則os模塊中的所有函數都會引發OSError。
os.getsid()
Python中的方法用於獲取與指定進程ID關聯的進程的會話ID。
注意: os.getsid()
該方法僅在UNIX平台上可用。
用法: os.getsid(pid)
參數:
pid:一個整數值,表示需要其會話ID的進程的進程ID。
返回類型:此方法返回一個整數值,該整數值表示與指定進程ID相關聯的進程的會話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)
輸出:
相關用法
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python sys.getrecursionlimit()用法及代碼示例
- Python PIL eval()用法及代碼示例
- Python sympy.rf()用法及代碼示例
- Python os.waitid()用法及代碼示例
- Python os.WIFEXITED()用法及代碼示例
- Python os.scandir()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python sympy.ff()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python sympy.nT()用法及代碼示例
- Python os.sync()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.getsid() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。