HOME/Articles/

socket example socket d (snippet)

Article Outline

Python socket example 'socket d'

Modules used in program:

  • import socket

python socket d

Python socket example: socket d

import socket

s = socket.socket()
s.connect(("192.168.1.100", 9999))

while True:
    mensaje = raw_input(">")
    s.send(mensaje)
    if mensaje == "quit":
        break

print("Adios")
s.close()