码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-10-20 21:07:24      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:htm   html   查看   red   font   编程   ESS   send   ack   


 

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'

标签:htm   html   查看   red   font   编程   ESS   send   ack   

原文地址:https://www.cnblogs.com/share23/p/9822773.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!