先说我的环境 python2.7 win7
1 cannot import name ttk
将 from tkinter import ttk
改成
from Tkinter import *
import ttk
2UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xe5
先把我用的 wing IDE保存编码更改为 utf-8还是不行。
在代码中加入
import sys
reload(sys)
sys.setdefaultencoding('utf8')
reload(sys)
sys.setdefaultencoding('utf8')
3 引发第三个错误 UnicodeDecodeError: 'utf8' codec can't decode byte 0xb2
在代码头部加上 # -*- coding: UTF-8 -*-
问题解决。