7 lines
149 B
Python
7 lines
149 B
Python
|
#!/usr/bin/python3
|
||
|
import socket
|
||
|
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||
|
s.connect(("8.8.8.8", 80))
|
||
|
print(s.getsockname()[0])
|
||
|
s.close()
|