1、使用recvfrom函数。
s.recvfrom(1024)
2、程序运行时会阻塞,等待接收数据,1024表示本次接收所能接收的字节数。
程序接收完后应该s.close()。
3、因为对象s是占用一定空间的,当用不到s后,应该及时的关闭。
代码如下:
fromsocketimport*#导入模块 addr=("192.168.0.106",8080)#准备接收方的地址 s=socket(AF_INET,SOCK_DGRAM) s.sendto("你好鸭".encode("gb2312"),addr)#发送内容,转换为字节流 redate=s.recvfrom(1024) print(redate) s.close()
以上就是python使用VS接收数据,希望对大家有所帮助。更多Python学习指路:Python基础教程