📜  查找IP地址的Python程序

📅  最后修改于: 2022-05-13 01:54:56.677000             🧑  作者: Mango

查找IP地址的Python程序

IP(互联网协议)地址是分配给连接到 TCP/IP 网络的每台计算机和其他设备(例如路由器、移动设备等)的标识符,用于定位和识别与网络上其他节点通信的节点. IP 地址通常以人类可读的符号书写和显示,例如 IPv4 中的 192.168.1.35(32 位 IP 地址)。
本文重点介绍如何在Python中获取计算机的 IP 地址。
您必须先导入套接字库,然后使用

IP = socket.gethostbyname(hostname) 

然后将 ip 的值打印到 print()函数中,将您的 IP 地址作为输出,如下面的程序所示。

# Python Program to Get IP Address
import socket   
hostname = socket.gethostname()   
IPAddr = socket.gethostbyname(hostname)   
print("Your Computer Name is:" + hostname)   
print("Your Computer IP Address is:" + IPAddr)   

输出:

Your Computer Name is:pppContainer
Your Computer IP Address is:10.98.162.168

相关文章: Java程序查找您计算机的IP地址