aaa
Posted aieike
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了aaa相关的知识,希望对你有一定的参考价值。
1 import socket 2 import threading 3 4 address = (‘0.0.0.0‘, 8000) 5 s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 6 s.bind(address) 7 print(‘8000端口在监听...‘) 8 while True: 9 data, attr = s.recvfrom(1024) 10 print(‘接受到来自{}:{}的数据:{}‘.format(attr[0], attr[1], data.decode())) 11 s.sendto(‘hello, {}‘.format(data.decode()).encode(), attr)
以上是关于aaa的主要内容,如果未能解决你的问题,请参考以下文章