python 获取当前主机IP地址

import socket

host_ip = socket.gethostbyname(socket.gethostname())

print(host_ip)

你可能感兴趣的:(tcp/ip,网络,linux)