Python 2.x 和Python 3.x 之间的重要区别以及示例
- 分区运算符
- 打印函数
- 统一码
- 范围
- 错误处理
- _future_ 模块
分区运算符
如果我们在Python 2.x 中移植我们的代码或执行Python 3.x 代码,如果整数除法更改未被注意到(因为它不会引发任何错误),这可能是危险的。在移植我们的代码时,最好使用浮点值(如 7.0/5 或 7/5.0)来获得预期的结果。
Python
print 7 / 5
print -7 / 5
'''
Output in Python 2.x
1
-2
Output in Python 3.x :
1.4
-1.4
# Refer below link for details
# https://www.geeksforgeeks.org/division-operator-in-python/
'''
Python
print 'Hello, Geeks' # Python 3.x doesn't support
print('Hope You like these facts')
'''
Output in Python 2.x :
Hello, Geeks
Hope You like these facts
Output in Python 3.x :
File "a.py", line 1
print 'Hello, Geeks'
^
SyntaxError: invalid syntax
Refer below link for details
https://www.geeksforgeeks.org/g-fact-25-print-single-multiple-variable-python/
'''
Python
print(type('default string '))
print(type(b'string with b '))
'''
Output in Python 2.x (Bytes is same as str)
Output in Python 3.x (Bytes and str are different)
'''
Python
print(type('default string '))
print(type(u'string with b '))
'''
Output in Python 2.x (Unicode and str are different)
Output in Python 3.x (Unicode and str are same)
'''
Python
for x in xrange(1, 5):
print(x),
for x in range(1, 5):
print(x),
'''
Output in Python 2.x
1 2 3 4 1 2 3 4
Output in Python 3.x
NameError: name 'xrange' is not defined
'''
Python
try:
trying_to_check_error
except NameError, err:
print err, 'Error Caused' # Would not work in Python 3.x
'''
Output in Python 2.x:
name 'trying_to_check_error' is not defined Error Caused
Output in Python 3.x :
File "a.py", line 3
except NameError, err:
^
SyntaxError: invalid syntax
'''
Python
try:
trying_to_check_error
except NameError as err: # 'as' is needed in Python 3.x
print (err, 'Error Caused')
'''
Output in Python 2.x:
(NameError("name 'trying_to_check_error' is not defined",), 'Error Caused')
Output in Python 3.x :
name 'trying_to_check_error' is not defined Error Caused
'''
Python
# In below python 2.x code, division works
# same as Python 3.x because we use __future__
from __future__ import division
print 7 / 5
print -7 / 5
Python
from __future__ import print_function
print('GeeksforGeeks')
打印函数
这是最广为人知的变化。在此, Python 2.x 中的print关键字被Python 3.x 中的print()函数替换。但是,如果在print关键字之后添加空格,则括号在Python 2 中有效,因为解释器将其计算为表达式。
Python
print 'Hello, Geeks' # Python 3.x doesn't support
print('Hope You like these facts')
'''
Output in Python 2.x :
Hello, Geeks
Hope You like these facts
Output in Python 3.x :
File "a.py", line 1
print 'Hello, Geeks'
^
SyntaxError: invalid syntax
Refer below link for details
https://www.geeksforgeeks.org/g-fact-25-print-single-multiple-variable-python/
'''
正如我们所看到的,如果我们在Python 2.x 中使用括号,那么没有问题,但是如果我们在Python 3.x 中不使用括号,我们会得到 SyntaxError。
统一码:
在Python 2 中,隐式 str 类型是 ASCII。但在Python 3.x 中,隐式 str 类型是 Unicode。
Python
print(type('default string '))
print(type(b'string with b '))
'''
Output in Python 2.x (Bytes is same as str)
Output in Python 3.x (Bytes and str are different)
'''
Python 2.x 也支持 Unicode
Python
print(type('default string '))
print(type(u'string with b '))
'''
Output in Python 2.x (Unicode and str are different)
Output in Python 3.x (Unicode and str are same)
'''
范围:
Python 2.x 的 xrange() 在Python 3.x 中不存在。在Python 2.x 中,range 返回一个列表,即 range(3) 返回 [0, 1, 2] 而 xrange 返回一个 xrange 对象,即 xrange(3) 返回迭代器对象,其工作方式类似于Java迭代器并在需要时生成数字。
如果我们需要多次迭代同一个序列,我们更喜欢 range() 因为 range 提供了一个静态列表。 xrange() 每次都会重建序列。 xrange() 不支持切片和其他列表方法。 xrange() 的优点是,当任务要迭代大范围时,它可以节省内存。
在Python 3.x 中,range函数现在与Python 2.x 中的 xrange 一样,所以为了保持我们的代码可移植性,我们可能希望坚持使用 range。所以Python 3.x 的 range函数是Python 2.x 的 xrange。
Python
for x in xrange(1, 5):
print(x),
for x in range(1, 5):
print(x),
'''
Output in Python 2.x
1 2 3 4 1 2 3 4
Output in Python 3.x
NameError: name 'xrange' is not defined
'''
错误处理:
两个版本的错误处理都有微小的变化。在Python 3.x 中,'as' 关键字是必需的。
Python
try:
trying_to_check_error
except NameError, err:
print err, 'Error Caused' # Would not work in Python 3.x
'''
Output in Python 2.x:
name 'trying_to_check_error' is not defined Error Caused
Output in Python 3.x :
File "a.py", line 3
except NameError, err:
^
SyntaxError: invalid syntax
'''
Python
try:
trying_to_check_error
except NameError as err: # 'as' is needed in Python 3.x
print (err, 'Error Caused')
'''
Output in Python 2.x:
(NameError("name 'trying_to_check_error' is not defined",), 'Error Caused')
Output in Python 3.x :
name 'trying_to_check_error' is not defined Error Caused
'''
__future__ 模块:
这基本上不是两个版本之间的区别,而是在这里提一下的有用的东西。 __future__ 模块的想法是帮助迁移到Python 3.x。
如果我们计划在 2.x 代码中支持Python 3.x,我们可以在代码中使用_future_导入。
例如,在下面的Python 2.x 代码中,我们使用 __future__ 模块使用Python 3.x 的整数除法行为。
Python
# In below python 2.x code, division works
# same as Python 3.x because we use __future__
from __future__ import division
print 7 / 5
print -7 / 5
输出 :
1.4
-1.4
另一个使用 __future__ 模块在Python 2.x 中使用括号的示例:
Python
from __future__ import print_function
print('GeeksforGeeks')
输出:
GeeksforGeeks
有关 __future__ 模块的更多详细信息,请参阅此内容。