当前位置:Gxlcms > Python > python3中使用什么编码

python3中使用什么编码

时间:2021-07-01 10:21:17 帮助过:93人阅读

python3中默认编码方式为utf-8。在存储和显示上,python3使用文本字符和二进制数据进行区分,更加明确和清晰。

默认情况下,Python 3 源码文件以 UTF-8 编码,所有字符串都是 unicode 字符串。(推荐学习:Python视频教程)

当然你也可以为源码文件指定不同的编码:

# -*- coding: cp-1252 -*-

文本字符使用str类型表示,str 能表示 Unicode 字符集中所有字符,而二进制数据使用bytes类型表示。

str与bytes之间的转换

      # bytes object
      b = b"example"
     
      # str object
      s = "example"
     
      # str to bytes
      bytes(s, encoding = "utf8")
     
      # bytes to str
      str(b, encoding = "utf-8")

默认使用utf-8

     # bytes object
      b = b"example"
     
      # str object
      s = "example"
      
      # an alternative method
      # str to bytes
      str.encode(s)
     
      # bytes to str
      bytes.decode(b)

更多Python相关技术文章,请访问Python教程栏目进行学习!

以上就是python3中使用什么编码的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行