Python3.x与Python2.x的差异用法

Posted 整合侠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3.x与Python2.x的差异用法相关的知识,希望对你有一定的参考价值。

Python3.x与Python2.x的差异用法

1,Python2.x:import urllib2

     Python3.x:import urllib.request

 

2,Python2.x: urllib2.URLError, e:

     Python3.x:urllib.request.URLError as e:

 

3,Python2.x:print ‘hello world‘

     Python3.x: print(‘hello world‘)

 

4,Python2.x:有raw_input和input

     Python3.x:将raw_input和input进行了整合,只有input

 

以上是关于Python3.x与Python2.x的差异用法的主要内容,如果未能解决你的问题,请参考以下文章

python3.x 和 python2.x关于 urllib的用法

Python - Python2与Python3的对比转换与兼容

python2.X与Python3.X区别

python2.x 与 python3.x的区别

python2.x与python3.x的区别

python3自动安装脚本,python3.x与python2.x共存