window->preferences->general->editors->text editors->spelling->encoding->UTF-8,編輯器的編碼格式 python
window->preferences->workspace->text file encoding->UTF-8 eclipse
打開eclipse安裝目錄->eclipse.ini,末行加上」-Dfile.encoding=UTF-8」 編輯器
py文件記得保存成UTF-8,文件首行加上」#coding=utf-8」 ,這一句話可控制代碼中可輸入中文字符 編碼
run-->run configurations->python run->Common-> Encoding ->UTF-8 ,這個應該是運行時的可解決中文亂碼問題。 spa
更改空白模塊默認顯示# -*- coding: utf-8 -*- ip
若是想每次新建一個空模塊時自動添加」# -*- coding: utf-8 -*-」 這樣的一句話,能夠經過window--Preferences--Pydev--Editor--Template--Empty,而後點擊「Edit」按鈕,把咱們要添加的語句加進去就能夠了,將事先默認的語句去掉,改寫爲:# -*- coding: utf-8 -*- 這樣的一句話,而後你再新建一個空白模塊,不再須要每次都要複製那個編碼語句了 utf-8
當在創建的python項目時,輸入的中文太細,能夠經過 it
Window > Preferences>General>Appearance>Color and Fonts中的第一個來設置,Basic裏面的TextFonts設置大小便可。 io