본문 바로가기
Python/Python FAQ

Python 파이썬을 사용하여 시스템 호스트 이름을 어떻게 가져올 수 있나요?, How can I use Python to get the system hostname?

by 베타코드 2023. 6. 10.
반응형

질문


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.


답변


<p>socket</p>와 그것의 <p>gethostname()</p> 기능을 사용합니다. 이렇게 하면 Python 인터프리터가 실행되는 컴퓨터의 hostname을 가져올 수 있습니다:

import socket
print(socket.gethostname())
반응형

댓글