【Python】获取ip

要使用Python获取IP地址,可以使用socket库中的gethostname()函数和gethostbyname()函数。

import socket


def get_ip_address():
    hostname = socket.gethostname()
    ip_address = socket.gethostbyname(hostname)
    return ip_address


ip = get_ip_address()
print("IP地址:", ip)

【Python】获取ip_第1张图片

你可能感兴趣的:(tcp/ip,网络,服务器,python,web)