7 lines
149 B
Python
Executable File
7 lines
149 B
Python
Executable File
#!/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()
|