自分のIPアドレスを確認する際に使ったものをメモとして残しておきます。
お使いの環境によりうまくいかないかもしれません。
ip_ad.py
import socket
def get_host():
return socket.gethostbyname(socket.gethostname())
print(get_host())
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
自分のIPアドレスを確認する際に使ったものをメモとして残しておきます。
お使いの環境によりうまくいかないかもしれません。
import socket
def get_host():
return socket.gethostbyname(socket.gethostname())
print(get_host())
Register as a new user and use Qiita more conveniently
Go to list of users who liked