如何在Python中获取用户名?

How do I get the username in Python?

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
Is there a portable way to get the current username in Python?

如何获取执行给定脚本的帐户的用户名?


1
2
import getpass
print getpass.getuser()