我已經在文件的頭部添添加了 這部分的程式碼 為什麼還是出現提示ASCII的編碼錯誤呢?
#!/usr/bin/python
# -*- coding: utf-8 -*-
SyntaxError: Non-ASCII character 'xe6' in file .... but no encoding declared; see http://python.org/dev/peps/pe... for details
為什麼呢?
学习ing2017-06-12 09:21:44
查看一下你的檔案的編碼格式,應該還不是Unicode類別的UTF-8等。試試Notepad++,開啟檔案後選編碼看要不要轉譯成UTF-8等
在linux環境下先查一下檔案的編碼
file -bi [filename]
也查一下你用的編輯器的編碼設定,如用vim的話,vimrc檔應該有這內容
set encoding=utf-8
set fileencoding=utf-8
因為encoding編碼"環境"的問題,和你的作業系統和編輯環境相關,你發問時可以記得提。