我们在python的IDE中有时候会输入中文,python对中文不是太友好。现在我们就解决这个问题。一般情况下在你的代码前面加入:
# coding: utf-8
reload(sys)sys.setdefaultencoding("utf-8")
基本上就可以了