Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
os.getpid()
Python中的method用於獲取當前進程的進程ID。
用法: os.getpid()
參數:不需要
返回類型:此方法返回一個整數值,該整數值表示當前進程的進程ID。此方法的返回類型為“ 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
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python sympy.Mul()用法及代碼示例
- Python sympy.sec()用法及代碼示例
- Python sys.getdefaultencoding()用法及代碼示例
- Python os.fchown()用法及代碼示例
- Python sympy.gcd()用法及代碼示例
- Python os.chown()用法及代碼示例
- Python os.lchown()用法及代碼示例
- Python sympy.Add()用法及代碼示例
- Python os.fstat()用法及代碼示例
- Python sys.getrecursionlimit()用法及代碼示例
- Python sympy.lcm()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.getpid() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。