目录
- 一.前言
- 二.Python str / bytes / unicode 区别
- 1.Python2.x 版本中 str / bytes / unicode 区别
- 2.Python3.x 版本中 str / bytes / unicode 区别
- 三.Python string 与 bytes 相互转换
- 1.string 经过编码 encode 转化成 bytes
- 2. bytes 经过解码 decode 转化成 string
- 四.猜你喜欢
零基础 Python 学习路线推荐 : Python 学习目录 >> Python 基础入门
一.前言
在讲解 str / bytes / unicode 区别之前首先要明白字节和字符的区别,请参考:bytearray / bytes / string 区别 中对字节和字符有清晰的讲解,最重要是明白:
- 字符 str 是给人看的,例如:文本保存的内容,用来操作的;
- 字节 bytes 是给计算机看的,例如:二进制数据,给计算机传输或者保存的;
二.Python str / bytes / unicode 区别
1.Python2.x 版本中 str / bytes / unicode 区别
在 Python2.x 版本中 str 跟 bytes 是等价的;值得注意的是:bytes 跟 unicode 是等价的,详情见下图
# !usr/bin/env python
# -*- coding:utf-8 _*-
\"\"\"
@Author:猿说编程
@Blog(个人博客地址): www.codersrc.com
@File:Python str / bytes / unicode 区别详解.py
@Time:2021/05/09 07:37
@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
\"\"\"
s1 = u\"Hello, World!\"
s2 = \"Hello, World!\"
print(type(s1))
print(type(s2))
\'\'\'
输出:
<type \'unicode\'>
<type \'str\'>
\'\'\'
2.Python3.x 版本中 str / bytes / unicode 区别
在 Python3.x 版本中 str 跟 unicode 是等价的;值得注意的是:bytes 跟 unicode 是不等价的,详情见下图
# !usr/bin/env python
# -*- coding:utf-8 _*-
\"\"\"
@Author:猿说编程
@Blog(个人博客地址): www.codersrc.com
@File:Python str / bytes / unicode 区别详解.py
@Time:2021/05/09 07:37
@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
\"\"\"
s1 = u\"Hello, World!\"
s2 = \"Hello, World!\"
print(type(s1))
print(type(s2))
\'\'\'
输出:
<class \'str\'>
<class \'str\'>
\'\'\'
三.Python string 与 bytes 相互转换
1.string 经过编码 encode 转化成 bytes
# !usr/bin/env python
# -*- coding:utf-8 _*-
\"\"\"
@Author:猿说编程
@Blog(个人博客地址): www.codersrc.com
@File:Python str / bytes / unicode 区别详解.py
@Time:2021/05/09 07:37
@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
\"\"\"
s = \"www.codersrc.com\"
#将字符串转换为字节对象
b2 = bytes(s,encoding=\'utf8\') #必须制定编码格式
# print(b2)
#方法一:字符串encode将获得一个bytes对象
b3 = str.encode(s)
#方法二:字符串encode将获得一个bytes对象
b4 = s.encode()
print(b3)
print(type(b3))
print(b4)
print(type(b4))
\'\'\'
输出结果:
b\'www.codersrc.com\'
<class \'bytes\'>
b\'www.codersrc.com\'
<class \'bytes\'>
\'\'\'
2. bytes 经过解码 decode 转化成 string
# !usr/bin/env python
# -*- coding:utf-8 _*-
\"\"\"
@Author:猿说编程
@Blog(个人博客地址): www.codersrc.com
@File:Python str / bytes / unicode 区别详解.py
@Time:2021/05/09 07:37
@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
\"\"\"
# 字节对象b2
# 如果含有中文,必须制定编码格式,否则报错TypeError: string argument without an encoding
b2 = bytes(\"猿说python\", encoding=\'utf8\')
# 方法二:bytes对象decode将获得一个字符串
s2 = bytes.decode(b2)
# 方法二:bytes对象decode将获得一个字符串
s3 = b2.decode()
print(s2)
print(s3)
\'\'\'
输出结果:
猿说python
猿说python
\'\'\'
四.猜你喜欢
未经允许不得转载:猿说编程 » Python str / bytes / unicode 区别详解
本文由博客 - 猿说编程 猿说编程 发布!
来源:https://www.cnblogs.com/shuopython/p/14913721.html
图文来源于网络,如有侵权请联系删除。