Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Windows 上的 IIS 中托管了我的 django 项目,是否有任何 python 函数来查找运行 IIS 的用户?提前致谢。
如果您指的是执行 IIS 的用户帐户,您可以尝试:
>>> import getpass >>> getpass.getuser() "salem" # my username account