python基础入门:bytes 和 string转换的方法

Posted Python学习

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础入门:bytes 和 string转换的方法相关的知识,希望对你有一定的参考价值。

Python 3 最重要的新特性大概要算是对文本和二进制数据作了更为清晰的区分。

文本总是 Unicode,由 str 类型表示,二进制数据则由 bytes 类型表示。

Python 3 不会以任意隐式的方式混用 str 和 bytes,正是这使得两者的区分特别清晰。

你不能拼接字符串和字节包,也无法在字节包里搜索字符串(反之亦然),也不能将字符串传入参数为字节包的函数(反之亦然).

python3.0 中怎么创建 bytes 型数据

>>> bytes([1,2,3,4,5,6,7,8,9])
>>> bytes("python", \'ascii\') # 字符串,编码

字符串

>>> website = \'http://www.baidu.com/\'
>>> type(website)
<class \'str\'>
>>> website
\'http://www.baidu.com/\'

utf-8 转bytes

>>> website_bytes_utf8 = website.encode(encoding="utf-8")
>>> type(website_bytes_utf8)
<class \'bytes\'>
>>> website_bytes_utf8
b\'http://www.baidu.com/\'

解码成 string,默认不填

\'\'\'
学习中遇到问题没人解答?小编创建了一个Python学习交流群:531509025
寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!
\'\'\'
>>> website_string = website_bytes_utf8.decode()
>>> type(website_string)
<class \'str\'>
>>> website_string
\'http://www.baidu.com/\'

以上是关于python基础入门:bytes 和 string转换的方法的主要内容,如果未能解决你的问题,请参考以下文章

Python bytearray/bytes/string区别

Python 程序员的 Golang 学习指南(III): 入门篇

python unicode和string byte

Python学习之python基础week4-2

python3 字符串string 转换成to 字节bytes

Python str / bytes / unicode 区别详解