Pythonでログイン中のユーザーIDを取得する
書式
方法1
import getpass
ログインユーザーID = getpass.getuser()
方法2
import os
ログインユーザーID = os.getlogin()
使用例
import getpass import os # ログイン名の取得 name = getpass.getuser() name2 = os.getlogin() # ログイン名を表示 print(f'ログイン名1: {name}') print(f'ログイン名2: {name2}')
実行結果
>python test.py
ログイン名1: cft
ログイン名2: cft