Open In App
Related Articles

Python | os.getpid() method

Improve Article
Improve
Save Article
Save
Like Article
Like

OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.

os.getpid() method in Python is used to get the process ID of the current process.

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’.

Code #1: use of os.getpid() method




# 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) 


Output:

2699
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 06 Nov, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials