Python – How to use Python to get the system hostname

hostnamepython

I'm writing a chat program for a local network. I would like be able to identify computers and get the user-set computer name with Python.

Best Answer

Use socket and its gethostname() functionality. This will get the hostname of the computer where the Python interpreter is running:

import socket
print(socket.gethostname())