我正在为本地网络写一个聊天程序。我希望能够识别计算机,并获得用户设置的计算机名称与Python。


当前回答

使用套接字及其gethostname()功能。这将得到运行Python解释器的计算机的主机名:

import socket
print(socket.gethostname())

其他回答

你可能会加载操作系统模块,所以另一个建议是:

import os
myhost = os.uname()[1]

如果我没猜错,你是在找插座。gethostname功能:

>> import socket
>> socket.gethostname()
'terminus'

在某些系统上,主机名是在环境中设置的。如果是这样的话,操作系统模块可以通过os.getenv把它从环境中拉出来。例如,如果HOSTNAME是包含你想要的内容的环境变量,下面将得到它:

import os
system_name = os.getenv('HOSTNAME')

Update: As noted in the comments, this doesn't always work, as not everyone's environment is set up this way. I believe that at the time I initially answered this I was using this solution as it was the first thing I'd found in a web search and it worked for me at the time. Due to the lack of portability I probably wouldn't use this now. However, I am leaving this answer for reference purposes. FWIW, it does eliminate the need for other imports if your environment has the system name and you are already importing the os module. Test it - if it doesn't work in all the environments in which you expect your program to operate, use one of the other solutions provided.

使用套接字及其gethostname()功能。这将得到运行Python解释器的计算机的主机名:

import socket
print(socket.gethostname())

关于什么:

import platform

h = platform.uname()[1]

实际上,你可能想看看platform.uname()中的所有结果