當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.getppid()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

os.getppid()Python中的method用於獲取當前進程的父進程ID。

用法: os.getppid() 

參數:不需要

返回類型:此方法返回一個整數值,該整數值表示當前進程的父進程ID。此方法的返回類型為“ int”類。

代碼1:使用os.getppid()方法

# Python program to explain os.getppid() method  
  
# importing os module  
import os 
  
# Get the Parent process ID  
# of the current process 
ppid = os.getppid() 
  
# Print the Parent process ID  
# of the current process 
print("Parent Process ID of current process:", ppid)
輸出:
Parent process ID of current process: 7653

代碼2:使用os.getppid()方法

# Python program to explain os.getppid() method  
  
# importing os module  
import os 
  
  
# Check the process ID  
# of the current process 
pid = os.getpid() 
print("Process ID of Current process:", pid) 
  
  
# Create a child process 
try: 
    pid = os.fork() 
except OSError: 
    exit("Could not create a child process") 
  
  
# In the child process  
# Check its Parent process ID 
# os.getppid() will return  
# the process ID of its parent process 
if pid == 0: 
     parent = os.getppid() 
     print("Parent process ID of child process:", parent)
輸出:
Process ID of Current process: 7653
Parent process ID of child process: 7653


相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.getppid() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。