您的位置 首页 知识分享

Python 3 中如何解决 "TypeError: a bytes-like object is required, not ‘str’" 编码错误?

3 编码问题详解 在 python 3 中解决编码问题时,需要格外注意 bytes 和 str 对象。 问题中…

Python 3 中如何解决 "TypeError: a bytes-like object is required, not 'str'" 编码错误?

3 编码问题详解

在 python 3 中解决编码问题时,需要格外注意 bytes 和 str 对象。

问题中提到的报错信息 “typeerror: a bytes-like object is required, not ‘str'” 的意思是,需要传递一个字节对象,而不是字符串对象。即使 data 已经是 bytes 类型,但 ctime() 编码后的结果仍然是字符串,导致了这个错误。

为了解决这个问题,需要将 ctime() 编码的结果也转换为 bytes 类型。完整代码如下:

立即学习“”;

# 服务器  from socket import * from time import ctime  HOST = '' PORT = 21507 BUFSIZE = 1024 ADDR = (HOST, PORT)  tcpSerSock = socket(AF_INET, SOCK_STREAM) tcpSerSock.bind(ADDR) tcpSerSock.listen(5)  while True:     print('waiting for connection...')     tcpCliSock, addr = tcpSerSock.accept()     print('...connected from:', addr)      while True:         data = tcpCliSock.recv(BUFSIZE)         if not data:             break         print(type(data))         tcpCliSock.send(('[{}] {}'.format(ctime().encode('utf-8'), data.decode()).encode()))     tcpCliSock.close()
登录后复制

通过将 ctime() 编码后的结果转换为 bytes 类型,我们解决了编码问题,服务器可以正确地接收和发送数据。

以上就是Python 3 中如何解决 "TypeError: a bytes-like object is required, not ‘str’" 编码错误?的详细内容,更多请关注php中文网其它相关文章!

本文来自网络,不代表甲倪知识立场,转载请注明出处:http://www.spjiani.cn/wp/4394.html

作者: nijia

发表评论

您的电子邮箱地址不会被公开。

联系我们

联系我们

0898-88881688

在线咨询: QQ交谈

邮箱: email@wangzhan.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部