import socket#引入socket模块
client=socket.socket()#生成socket连接对象(客户端)
client.connect(("localhost",6969))#和目标主机建立连接
client.send("hello shabi".encode())#向对方发送数据。无法发送字符串,需要
#用emcode来转化为字符串
client.close()#关闭
#客户端
import socket#引入socket模块
client=socket.socket()#生成socket连接对象(客户端)
client.connect(("localhost",6969))#和目标主机建立连接
client.send("hello shabi".encode())#向对方发送数据。无法发送字符串,需要
#用emcode来转化为字符串
client.close()#关闭
#客户端
本文标题:2019-12-06--客户端
本文链接:https://www.haomeiwen.com/subject/pvysgctx.html
网友评论