標籤:
今天安裝了PyScripter編輯器,剛要寫代碼,突然就出現異常:
<span style="font-size:14px;color:#ff0000;">>>> Traceback (most recent call last):
File "<string>", line 378, in findModuleOrPackage
File "<string>", line 367, in find_dotted_module
UnicodeEncodeError: ‘ascii‘ codec can‘t encode characters in position 0-1: ordinal not in range(128)</span>
python在安裝時,預設的編碼是ascii。經常出現它無法處理非ascii編碼的情況。此時需要手動修改它的編碼字元集。
查詢系統預設編碼:
在Shell中,輸入python,進入python解譯器。
>>>import sys
>>>sys.getdefaultencoding()
即可。
如果想設定預設編碼:
>>>sys.setdefaultencoding(‘utf8‘)
即可把預設編碼設定為utf8。
但是如果重啟python解譯器,預設編碼就又變回ascii了。
如果希望把系統預設編碼永久設定為utf8,則:
在python的Lib\site-packages檔案夾下建立一個sitecustomize.py,內容為:
# encoding=utf8
import sys
reload(sys)
sys.setdefaultencoding(‘utf8‘)
reference:
http://blog.csdn.net/liuxingyu_21/article/details/27487391
http://www.cnblogs.com/sislcb/archive/2008/11/26/1341453.html
http://www.pythonfan.org/blog-3526-1416.html
Python編碼問題:UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-1: ordinal not in range(12