シンプルなチャット クライアントのベースに取り組んでいると、次のエラーが発生しました。
socket.error: [Errno 10049] The requested address is not valid in its context
コードは次のとおりです。
from socket import *
HOST = ''
PORT = 8000
s = socket(AF_INET, SOCK_STREAM)
s.connect((HOST, PORT))
i = True
while i is True:
msg = raw_input("Write A MSG: ")
s.send(msg)
print "Awaiting reply"
reply = s.recv(1024)
print "Recived: ", repr(reply)
s.close()
助けてくれてありがとう。