编程语言
首页 > 编程语言> > Python报错:TypeError: string argument without an encoding

Python报错:TypeError: string argument without an encoding

作者:互联网

原博客地址:https://blog.csdn.net/yuan0401yu/article/details/82944992

 报错处:server_socket.sendto(bytes(s), addr)

修改:server_socket.sendto(bytes(s.encode('utf-8')), addr)  然后就可以成功通信了
 

其实也挺奇怪的,我之前一直都没报错,后来换了环境 从python2.7换成了python3.5就开始报错了  ~~ 

标签:addr,TypeError,string,bytes,server,报错,sendto,socket
来源: https://www.cnblogs.com/luyj00436/p/15389931.html