摘要: 代码讲解 1 import socket 2 3 4 # 发送数据 5 def send_data(udp_socket, dest_ip, dest_port): 6 send_msg = input('请输入要发送的数据: ') 7 udp_socket.sendto(send_msg.enco 阅读全文
posted @ 2020-01-26 10:27 补码 阅读(374) 评论(0) 推荐(0) 编辑