Python os.getlogin() - 获取在进程的控制终端上登录的用户的名称

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

Python os.getlogin()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程