Comment obtenir l'adresse IP de PC à l'aide de Python
import socket
hostname = socket.gethostname()
local_ip = socket.gethostbyname(hostname)
print(local_ip)
#it's work
Said HR