mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
15 lines
227 B
Python
15 lines
227 B
Python
|
# client.py
|
||
|
|
||
|
import socket
|
||
|
|
||
|
HOST, PORT = '127.0.0.1', 1400
|
||
|
|
||
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||
|
s.connect((HOST, PORT))
|
||
|
|
||
|
s.send(b'Hello World')
|
||
|
data = s.recv(1024)
|
||
|
|
||
|
s.close()
|
||
|
print(repr(data.decode('ascii')))
|