반응형
질문
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())
반응형
댓글