Python| os.getgroups() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError 。
Python中的os.getgroups()
方法用于获取与当前进程关联的补充组 ID 列表。
补充组 ID :在 Unix 系统中,每个用户必须是至少一个称为主要组的组的成员。用户也可以在组数据库的相关条目中被列为其他组的成员。这些附加组的 ID 称为补充组 ID
注意: os.getgroups()
方法仅在 UNIX 系统上可用。
Syntax: os.getgroups()
Parameter: No parameter is required
Return Type: This method returns a list which represents the supplementary group IDs associated with the current process
代码:使用 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]