当前位置:   article > 正文

Python知识笔记(+3):在定义字符串前面加b、u、r、f的含义_python字符串前加b

python字符串前加b

1. python中定义字符串前面加b、u、r的含义

1.1 基本格式
str = b"xxxx"
str = u"xxxx"
str = r"xxxx"
str = f"xxxx"
  • 1
  • 2
  • 3
  • 4
1.2 描述及对比

(1)字符串前面加b表示后面字符串是bytes类型,以便服务器或浏览器识别bytes数据类型;
(2)字符串前面加u表示以Unicode格式进行编码,往往用来解决中文乱码问题,一般英文字符串基本都可以正常解析,而中文字符串必须表明用什么编码,否则就会乱码。
(3)字符串前面加r表示以raw string格式进行定义,可以防止字符串规避反斜杠\的转义。
例如:

str1 = "\thello"
str2 = r"\thello"
print("str1 =",str1)
print("str2 =",str2)
  • 1
  • 2
  • 3
  • 4

输出

str1 =  	hello
str2 = \thello
  • 1
  • 2

(4)字符串前面加f表示能支持大括号里面的表达式。
例如:

python = "蟒蛇"

print("我要好好学{python}!")

print(f"我要好好学{python} !")
  • 1
  • 2
  • 3
  • 4
  • 5

输出

我要好好学{python} !
我要好好学蟒蛇 !
  • 1
  • 2

(5)在python3中,bytesstr的相互转换

str.encode('utf-8')

bytes.decode('utf-8')
  • 1
  • 2
  • 3

例如:

print("你好".encode(encoding="utf-8"))
  • 1

输出b'\xe4\xbd\xa0\xe5\xa5\xbd'

print(b'\xe4\xbd\xa0\xe5\xa5\xbd'.decode())
  • 1

输出你好

往往用于图片、音视频等文件的读写时,可用bytes数据。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/153638
推荐阅读
相关标签
  

闽ICP备14008679号