python - socket网络编程
2021-07-02 08:04
标签:enc bin 基础 host style 本地 info listen 客户 基础 server: client: python - socket网络编程 标签:enc bin 基础 host style 本地 info listen 客户 原文地址:https://www.cnblogs.com/Anec/p/9631656.htmlimport socket # 导入 socket 模块
s = socket.socket() # 创建 socket 对象
host = "127.0.0.1" # 获取本地主机名
port = 12345 # 设置端口
s.bind((host, port)) # 绑定端口
s.listen(5) # 等待客户端连接
while True:
c, addr = s.accept() # 建立客户端连接。
print (‘连接地址:‘, addr)
info ="hello!"
c.send(info.encode())
c2 = c.recv(1024)
print(c2)
c.close() # 关闭连接
#---------------
s = socket.socket() # 创建 socket 对象
host = "127.0.0.1" # 获取本地主机名
port = 12345 # 设置端口号
s.connect((host, port))
s2 = s.recv(1024).decode()
info = "nihao!"
s.send(info.encode())
print(s2,type(s2))
s.close()
上一篇:出现线程死锁的几种情况
下一篇:大话数据结构 绪论及算法
文章标题:python - socket网络编程
文章链接:http://soscw.com/index.php/essay/100699.html