1. 程式人生 > >Python版本問題:解決Python版本升級(python2系列→Python3系列)導致錯誤的總結集合

Python版本問題:解決Python版本升級(python2系列→Python3系列)導致錯誤的總結集合

Python版本升級問題及其解決方法

1、
Python2系列:NameError: name 'raw_input' is not defined
Python3系列:python3.0版本後用input替換了raw_input

2、

Python2系列:import urllib2
Python3系列:import urllib.request as urllib2

3、

Python2系列:import thread
Python3系列:import _thread as thread

4、

Python2系列:except Exception,e:
Python3系列:except Exception as e:

5、

Python2系列:xrange
Python3系列:range

6、

Python2系列:unichr(i)
Python3系列:chr(i)

7、

Python2系列:
Python3系列:

8、

Python2系列:
Python3系列:

9、

Python2系列:
Python3系列:

10、

Python2系列:
Python3系列: