当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.getgroups()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

如果文件名和路径无效或无法访问,或者具有正确类型但操作系统不接受的其他参数,则os模块中的所有函数都会引发OSError。

os.getgroups()Python中的method用于获取与当前进程关联的补充组ID的列表。


补充组ID:在Unix系统中,每个用户必须是至少一个称为主组的组的成员。也有可能在组数据库的相关条目中将用户列为其他组的成员。这些附加组的ID称为补充组ID

注意: os.getgroups()该方法仅在UNIX系统上可用。

用法: os.getgroups()

参数:不需要参数

返回类型:此方法返回一个列表,该列表表示与当前进程关联的补充组ID。

代码:os.getgroups()方法的使用
# Python program to explain os.getgroups() method  
    
# importing os module  
import os 
  
# Get the list of supplementary 
# group IDs associated with 
# the current process 
s_grp_id = os.getgroups() 
  
# Print the list 
print("Supplementary group IDs associated with the current process:") 
print(s_grp_id)
输出:
Supplementary group IDs associated with the current process:
[4, 24, 27, 30, 46, 118, 128, 1000]


相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.getgroups() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。