爬坑Python 3.6 在 Socket 编程时出现类型错误 TypeError: a bytes-like object is required, not 'str'(示例代码(代

Posted 山间一棵松

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了爬坑Python 3.6 在 Socket 编程时出现类型错误 TypeError: a bytes-like object is required, not 'str'(示例代码(代相关的知识,希望对你有一定的参考价值。


 

1. 问题描述

  Python 3.6 在 Socket 编程时出现错误如下

Traceback (most recent call last):

  File "F:/share/IdeaProjects/test/mypython/test/test10_tcpclient.py", line 17, in <module>
    sock.send(str)
TypeError: a bytes-like object is required, not \'str\'

Process finished with exit code 1

 


2. 解决方案

  类型错误,解决方案参考 python执行tcp服务器和客户端

  将 Client 端代码改为以下

sock.send(bytes(str,\'utf-8\'))

  详情请查看  [Python_7] Python Socket 编程

 

 

 


 

以上是关于爬坑Python 3.6 在 Socket 编程时出现类型错误 TypeError: a bytes-like object is required, not 'str'(示例代码(代的主要内容,如果未能解决你的问题,请参考以下文章

python_udp_socket问题

网络编程学习笔记:Socket编程

使用 python 3.6 和 Vmware WorkStation 构建一个小型虚拟局域网通讯程序

Python基础 - 第八天 - Socket编程进阶

Python Socket编程

python-Socket网络编程