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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。