【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)