2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Python] 自分のIPアドレスを確認する(個人的なメモ)

2
Posted at

自分のIPアドレスを確認する際に使ったものをメモとして残しておきます。
お使いの環境によりうまくいかないかもしれません。

ip_ad.py
import socket

def get_host():
        return socket.gethostbyname(socket.gethostname())

print(get_host())
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?