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


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


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

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

在UNIX-like系统中,可以将多个用户分组。组标识符(通常缩写为GID)是用于表示特定组的数字值。它将系统用户与共享共同点的其他用户相关联。


os.getgrouplist()Python中的方法用于获取指定用户所属的所有组ID的列表。

注意: os.getgrouplist()该方法仅在UNIX平台上可用。

用法: os.getgrouplist(user, gid)

参数:
user:代表系统用户的字符串值。
gid:代表群组ID的整数值。
如果gid不属于指定的用户,则它也将包含在返回列表中

返回类型:此方法返回一个列表,该列表表示指定用户所属的所有组ID。

代码:os.getgrouplist()方法的使用
# Python program to explain os.getgrouplist() method  
  
# importing os module  
import os 
  
# System user 
user = "ihritik"
  
# Group id 
gid = 100
  
# Get the list of all 
# group ids the specified user 
# belongs to using 
# os.getgrouplist() method 
groupList = os.getgrouplist(user, gid) 
  
# Print the list 
print("% s is associated with the following group ids:" % user) 
print(groupList, "\n") 
  
  
# System user 
user = "root"
  
# Group id 
gid = 100
  
# Get the list of all 
# group ids the specified user 
# belongs to using 
# os.getgrouplist() method 
groupList = os.getgrouplist(user, gid) 
  
# Print the list 
print("%s is associated with the following group ids:" %user) 
print(groupList) 
  
  
# If the specified gid does not 
# belongs to the specified user 
# it will also be included in  
# the list of groups
输出:
ihritik is associated with the following group ids:
[100, 4, 24, 27, 30, 46, 118, 128] 

root is associated with the following group ids:
[100]

os.getgrouplist() method output



相关用法


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