Python中bytes和str的区别与联系详解

作者:斯曦巍峨 时间:2022-04-18 18:36:57 

Bytes和Str的区别

在Python3中,字符序列有两种类型:bytes和str。bytes类型是无符号的8位值(通常以ASCII码显式),而str类型是Unicode代码点(code point)。代码点指编码字符集中,字符所对应的数字。

a = b'hello world'
print(isinstance(a, bytes))
print(list(a))
print(a)
"""
True
[104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]
b'hello world'
"""

a = 'hello world'
print(isinstance(a, str))
print(list(a))
print(a)
"""
True
['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']
hello world
"""

isinstance()方法可以判断对象的类型,例如这里用来判断是str还是bytes。

Python3对文本(str)和二进制数据(bytes)有着严格的区分,不能混用。

x = b'python'
y = b'java'
z = 'c++'
w = 'c'

print(x + y)
# b'pythonjava'
print(z + w)
# c++c
print(x + z)
# TypeError: can't concat str to bytes

print('python' == b'python')
# False

上述示例中str类型和bytes类型间使用=来比较是否相等不会报错,但是会返回False。

Bytes与Str间的转换

str类型和bytes类型间可以相互转换。

str到bytes的转换需要调用encode()方法。

bytes到str间的转换需要调用decode()方法。

x = b'python'
y = x.decode(encoding='utf-8')
z = y.encode(encoding='utf-8')
print(y)
print(z)
"""
python
b'python'
"""

可以观察到encode()和decode()方法都有一个encoding参数用来指定具体的编码规则。

读写文件的注意事项

当要将bytes类型写入到文件中时,必须指定mode=wb。读取二进制文件时可以指定mode=rb或者指定编码方式,使用后者时读出来的就不是bytes类型的字符序列了。

x = b'python'

# 错误示例
with open('data.bin', mode='w') as fp:
   fp.write(x)
# TypeError: write() argument must be str, not bytes

# 正确示例
with open('data.bin', mode='wb') as fp:
   fp.write(x)

# 读取二进制文件方式1
with open('data.bin', mode='rb') as fp:
   content = fp.read()
   print(content)
# python

# 读取二进制文件方式2
with open('data.bin', mode='r', encoding='utf-8') as fp:
   content = fp.read()
   print(content, type(content))
# python <class 'str'>

当读写Unicode数据时,只需要注意下编码方式即可,最好是显式的传递encoding参数。

x = '世界你好'

with open('data.txt', mode='w', encoding='utf-8') as fp:
   fp.write(x)

with open('data.txt', mode='r', encoding='utf-8') as fp:
   content = fp.read()
   print(content)
# 世界你好

# 错误示例,编码方式不对
with open('data.txt', mode='r', encoding='gbk') as fp:
   content = fp.read()
   print(content)
# 涓栫晫浣犲ソ

来源:https://blog.csdn.net/qq_42103091/article/details/124573589

标签:python,bytes,str
0
投稿

猜你喜欢

  • 彻底搞懂MySQL存储过程和函数

    2024-01-24 10:48:52
  • python目标检测yolo2详解及预测代码复现

    2021-09-30 12:35:20
  • 如何处理json中不带双引号的key的问题

    2023-02-07 00:25:22
  • Python实现的数据结构与算法之快速排序详解

    2022-03-03 16:49:17
  • SQL语句分组获取记录的第一条数据的方法

    2024-01-12 17:23:13
  • MySQL DDL 引发的同步延迟该如何解决

    2024-01-26 19:44:00
  • python面向对象 反射原理解析

    2021-05-14 08:56:32
  • 详解Pytest测试用例的执行方法

    2022-02-15 18:28:14
  • js中Array.forEach跳出循环的方法实例

    2024-05-11 09:32:22
  • Ubuntu16.04 server下配置MySQL,并开启远程连接的方法

    2024-01-17 08:59:10
  • 如何把小写数字转换成英文?

    2009-11-06 13:59:00
  • Python match语句的具体使用

    2023-07-24 03:10:08
  • Python获取指定文件夹下的文件名的方法

    2022-04-26 03:10:03
  • win2003安装sqlserver 2000提示无法验证产品密钥的解决方法

    2024-01-27 00:18:39
  • 使用MySQL实现select into临时表的功能

    2024-01-25 01:14:53
  • js模仿php中strtotime()与date()函数实现方法

    2024-04-18 10:01:55
  • Python的__builtin__模块中的一些要点知识

    2022-10-08 01:46:23
  • 利用Pyhton中的requests包进行网页访问测试的方法

    2021-09-11 05:12:48
  • Python 生成多行重复数据的方法实现

    2022-07-26 18:56:07
  • Python简单生成8位随机密码的方法

    2021-02-22 08:43:14
  • asp之家 网络编程 m.aspxhome.com