[Python] 纯文本查看 复制代码 from socket import *
def main():
print("------------")
udpSocket = socket(AF_INET,SOCK_STREAM)
data = "hello socket haha"
udpSocket.sendto(data,("192.168.0.163",8080))
udpSocket.close()
if __name__ == "__main__":
main()
我在执行这行代码的时候,程序崩溃了,告诉我socket没有连接,
请问这种问题怎么解决? 目标id是存在的,而且处于同一网段. 在线等,感谢! |