字节转换成字符串,如下:

bytes1 = b'i am bytes'  # 是字节,验证类型
print(type(Bytes_str))
 
str_1 = Bytes_str.decode('utf-8')  # str_1是字符串类型,转换类型
print(type(str_1))  # 验证类型

字符串转换成字节,如下:

str2 = 'i am str'  # 创建字符串,并查看类型
print(type(str2))
 
bytes1 = str2.encode()  # 转换类型,并验证
print(type(bytes1))
 
bs = b'testing bytes'  # 使用小 ‘b’ 也可将字符串转换成bytes(字节)
print(type(bs))  # 验证类型

注意:变量名、文件名不能使用python中的函数名命令,如print、bytes、str、list等等

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐