Python menutup soket

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("10.0.0.3", 1234))
# stuff here
s.close() # this is how you close the socket
Kodi4444