脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - 代码实例讲解python3的编码问题

代码实例讲解python3的编码问题

2021-08-05 00:12卡和我 Python

在本篇内容里小编给各位分享了关于python3的编码问题以及相关实例代码,有需要的朋友们参考一下。

python3的编码问题。

打开python开发工具IDLE,新建‘codetest.py'文件,并写代码如下:

  1. import sys
  2.  
  3. print (sys.getdefaultencoding())

代码实例讲解python3的编码问题

F5运行程序,打印出系统默认编码方式

代码实例讲解python3的编码问题

将字符串从str格式编码程bytes格式,修改代码如下:

  1. import sys
  2.  
  3. print (sys.getdefaultencoding())
  4.  
  5. s = '你好'
  6.  
  7. print (type(s))
  8.  
  9. b = s.encode('utf-8')
  10.  
  11. print (type(b))
  12.  
  13. print (b)

其中b = s.encode('utf-8') 等同于b = s.encode() ,因为系统默认编码方式就是utf-8

代码实例讲解python3的编码问题

F5运行程序,打印出内容如下,中文必须用utf-8编码,因为ascii码表示不了所有汉字,这里暂时不介绍gbk编码,现在用得很少了,utf-8使用3个字节表示一个汉字,ascii使用一个字节表示一个英文字母或字符。

代码实例讲解python3的编码问题

解码就是从bytes变回str的过程,修改代码如下:

  1. import sys
  2.  
  3. print (sys.getdefaultencoding())
  4.  
  5. s = '你好'
  6.  
  7. print (type(s))
  8.  
  9. b = s.encode('utf-8')
  10.  
  11. print (type(b))
  12.  
  13. print (b)
  14.  
  15. se = b.decode('utf-8')
  16.  
  17. print (se)
  18.  
  19. print (type(se))

代码实例讲解python3的编码问题

F5运行程序,打印内容如下图,bytes转回str

代码实例讲解python3的编码问题

utf-8编码兼容ascii,当既有中文又有英文时使用encode('utf-8'),英文还是占一个字节,中国三个字节,另外当py文件注释有中文时,需要在头部添加

#coding:utf-8

代码实例讲解python3的编码问题

 

原文链接:https://jingyan.baidu.com/article/03b2f78cb495751ea337ae10.html

延伸 · 阅读

精彩推荐