Python os.getlogin()
Python中的os.getlogin()方法用于获取在进程的控制终端上登录的用户的名称。
语法:os.getlogin()
参数:不需要
返回类型:该方法返回一个字符串,表示在进程的控制终端上登录的用户的名称。
示例1
使用os.getlogin()方法
# Python program to explain os.getlogin() method
# importing os module
import os
# Get the name of the user
# logged in on the controlling
# terminal of the process.
user = os.getlogin()
# Print the name of the user
# logged in on the controlling
# terminal of the process.
print(user)
输出:
ihritik