文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python笔记之2.x上兼容3.x版本

2023-01-31 07:11

关注

在前文《python笔记之3.x与2.x的使用区别》谈及了不同版本的区别问题。长远看软件新版本肯定会取代低版本的,除非你有成熟的老版本代码必须考虑兼容性问题,一般还是推荐新手学习新版本。

最近学习python,主要使用3.3版本,但看代码和书籍时,碰到多是2.x代码,感觉问题多多,尤其是处理中文的时候。我在win下主要使用py3自带的idle为编辑器。

下面在python 2.7.3下测试print显示汉字的问题。

第一个出场的是print语句版本:

#!/path/python
#coding:utf-8

s = "汉字a1."
ss = u"汉字a1."

print s, type(s), len(s)
print ss, type(ss), len(ss)
print '-' * 40

print repr(s)
print repr(ss)
print '-' * 40

s1 = s.decode('utf-8')
print s1,len(s1),type(s1)
print '-' * 40

s2 = s.decode('utf-8').encode('gbk')
print s2,type(s2),len(s2)
print '-' * 40

s3 = ss.encode('gbk')
print s3,type(s3),len(s3)
 

先分析下python代码的基本框架结构:

#!/path/python
#coding:utf-8
#
#

注意:
第1行:写明python路径,方便以后移植的Linux下,在windows下可以将path替换为合适的路径,如C:\python33。
第 2行:写明源码的编码格式,python 3就使用utf-8格式,python 2可以使用gbk/gb2312/cp936/gb18030几个同义语(实际上是有差别 的),方便中文处理。本行直接写“#coding:xyz”或“#coding=xys”都可以(其中xyz就是前面列举的你所使用的编码格式),完全不 必要加上花里胡哨的修饰,如“#-*- coding: utf-8 -*-”,纯粹的多此一举。
第3行开始:是写代码的地方,如import,def等等。

运行结果:

>>>
姹夊瓧a1. <type 'str'> 9
汉字a1. <type 'unicode'> 5
----------------------------------------
'\xe6\xb1\x89\xe5\xad\x97a1.'
u'\u6c49\u5b57a1.'
----------------------------------------
汉字a1. 5 <type 'unicode'>
----------------------------------------
汉字a1. <type 'str'> 7
----------------------------------------
汉字a1. <type 'str'> 7
>>> 

将上面的代码修改为print()函数版:

#!/path/python
#coding:utf-8

s = "汉字a1."
ss = u"汉字a1."

print (s, type(s), len(s))
print( ss, type(ss), len(ss))
print('-' * 40)

print(repr(s))
print( repr(ss))
print ('-' * 40)

s1 = s.decode('utf-8')
print (s1,len(s1),type(s1))
print ('-' * 40)

s2 = s.decode('utf-8').encode('gbk')
print (s2,type(s2),len(s2))
print( '-' * 40)

s3 = ss.encode('gbk')
print( s3,type(s3),len(s3))
 

执行结果:

>>>
('\xe6\xb1\x89\xe5\xad\x97a1.', <type 'str'>, 9)
(u'\u6c49\u5b57a1.', <type 'unicode'>, 5)
----------------------------------------
'\xe6\xb1\x89\xe5\xad\x97a1.'
u'\u6c49\u5b57a1.'
----------------------------------------
(u'\u6c49\u5b57a1.', 5, <type 'unicode'>)
----------------------------------------
('\xba\xba\xd7\xd6a1.', <type 'str'>, 7)
----------------------------------------
('\xba\xba\xd7\xd6a1.', <type 'str'>, 7)
>>>

这是print语句与print函数输出不一致的一个例子。 可以看到,将print语句转换为print()后,显示结果乱七八糟,全是字符串的各种各样的ascii,gbk,unicode,utf-8编码,而非我所期望的汉字。
怎样才能低版本下利用高版本的特性呢,以提供未来升级后最大的可能性兼容呢?

python提供了自己特有的方案。在vpython.org网站看到:

Compatibility with the future and the past

We encourage you to place the following statement at the start of your programs, in order that your program will run not only on Python 2.7 today, but also will run in the future on the newer Python 3.x series. Note the double underscore before "future" and the double underscore after "future".

from __future__ import print_function, division

For Python 2.7, this statement invokes the new Python 3.x print format, namely "print(x)" instead of the old "print x", and the new division scheme, namely that 3/4 is 0.75, not zero as in the past. This statement is ignored by Python 3.x.
 

简言之,在python 2.7的代码中,添加一句“from __future__ import print_function, division”,就可以确保低版本代码尽量兼容于python 3.3的代码。

注意future前后都有两个下划线“_”,不要搞错。
在前面的print()函数版代码中添加该句,如下文所示红色文字部分:

#!/path/python
#coding:utf-8
from __future__ import print_function

s = "汉字a1."
ss = u"汉字a1."

print (s, type(s), len(s))
print( ss, type(ss), len(ss))
print('-' * 40)

print(repr(s))
print( repr(ss))
print ('-' * 40)

s1 = s.decode('utf-8')
print (s1,len(s1),type(s1))
print ('-' * 40)

s2 = s.decode('utf-8').encode('gbk')
print (s2,type(s2),len(s2))
print( '-' * 40)

s3 = ss.encode('gbk')
print( s3,type(s3),len(s3))

执行效果:

>>>
姹夊瓧a1. <type 'str'> 9
汉字a1. <type 'unicode'> 5
----------------------------------------
'\xe6\xb1\x89\xe5\xad\x97a1.'
u'\u6c49\u5b57a1.'
----------------------------------------
汉字a1. 5 <type 'unicode'>
----------------------------------------
汉字a1. <type 'str'> 7
----------------------------------------
汉字a1. <type 'str'> 7
>>>

这才是我所期望的效果,也解决了print语句与print函数输出不一致的问题。

最后看看除法(“/”)问题:

Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.

>>> print(3/4)
0
>>> print 3/4
0

>>> from __future__ import division

>>> print(3/4)
0.75
>>> print 3/4
0.75
>>>

看到没有,有和没有“from __future__ import division”,导致所求结果大不同。
 

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯