0

Can someone please help me with my code below

import socket

s = socket.socket(socket.AF_INET, socket SOCK_STREAM)
s.bind((socket.gethostname(), 6139))
s.listen(5)

while True:
clientsocket, address = s but if I enter . It crashes can someone please help me
Ps this is on Python3IDE

Comments
Add Comment