記錄遇到的python2與python3不兼容的地方,給你們提供方便。你們有知道哪些不兼容的地方,寫到評論裏我會及時更新到文章中。python
MySQLdb
MySQLdb 只適用於python2.x,發現pip3裝不上。 它在py3的替代品是:pymysql,但python2的項目在python3運行會出現「沒有安裝MySQLdb」的錯誤須要在報錯代碼行以前加入如下代碼:mysql
import pymysql pymysql.install_as_MySQLdb()
string 模塊
python2代碼:sql
string.uppercase string.lowercase
python3代碼:code
string.ascii_uppercase string.ascii_lowercase
cStringIO與io
python2導入:ip
from cStringIO import StringIO
python3導入:ci
from io import StringIO