码迷,mamicode.com
首页 > 编程语言 > 详细

python2和python3中的编码问题

时间:2015-10-09 23:03:51      阅读:1011      评论:0      收藏:0      [点我收藏+]

标签:

开始拾起python,准备使用python3, 造轮子的过程中遇到了编码的问题,又看了一下python3和python2相比变化的部分。

首先说个概念:

 unicode:在本文中表示用4byte表示的unicode编码,也是python内部使用的字符串编码方式。

  

utf-8:在本文中指最少1byte表示的unicode编码方式

我在使用

if isinstance(key,unicode):

    key= key.encode(‘utf-8‘)

的时候,发现key值被转成了b‘foo‘,b‘bar‘ 这种类型。于是查了一下。

对于python2,内置的字符串类型有str和unicode。比如‘abc‘是str,u‘你好‘则是unicode。

python3里没有预定义unicode类型,内置的字符串就是str,因此使用isinstance(key,unicode)的时候会报错,python3 renamed the unicode type to str,the old str type has been replaced by bytes。

对于python2和python3下的encode如下

python3:

技术分享

python2:

技术分享

可以看到python3编码后的格式变成了bytes类型。

另一个关于字典里items和iteritems的变化也要注意:

python docs里说:

dict.items(): Return a copy of the dictionary’s list of (key, value) pairs.

dict.iteritems(): Return an iterator over the dictionary’s (key, value) pairs.

在python3里移除了iteritems方法,使用items()代替它返回一个view,which is pretty much like iterator,即items()就返回一个类似集的容器对象,而不是一个列表,如果想要返回一个列表需要list(dict.items()).

 

python2和python3中的编码问题

标签:

原文地址:http://www.cnblogs.com/timeship/p/4865328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!