摘要:
在.py文件第一行加上以下任意一种,只是写法不同,效果一样的。# -*- coding: UTF-8 –*-#vim: set fileencoding=utf-8:# coding=utf-8示例1:# -*- coding: UTF-8 –*-import sys'''Created on 2012-9-20@author: Donie'''if __name__ == '__main__': #第一种 #type = sys.getfilesystemencoding() #print "中文".deco 阅读全文