10 lines
165 B
Python
Executable File
10 lines
165 B
Python
Executable File
#!/usr/bin/env python3
|
|
import socket
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
s.bind(('', 0))
|
|
addr = s.getsockname()
|
|
print (addr[1])
|
|
s.close()
|
|
exit(0)
|