中文亂碼,網上一堆解決方法,可是根本沒有有效起做用的。
在python腳本的前面添加:python
# -*- coding:utf-8 -*-
並不能在控制檯輸出時是的print輸出中文不亂碼。可是此時os.system()的輸出倒是正常的,
若是使用調試進行輸出獲得相反的結果:print輸出正常,可是終端輸出亂碼。json
解決方法:儘可能不要用中文
好吧,確實沒卵用!哪位小夥伴有解決方法,請不吝賜教。vim
此時須要安裝vscode-fileheader
安裝後須要進行相關配置:
文件 ——> 首選項 ——> 設置
打開setting.json,搜索fileheader,找到如下設置:插件
// By default, create file username "fileheader.Author": "mikey.zhaopeng", // By default, common template. Do not modify it!!!!! "fileheader.tpl": "/*\r\n * @Author: {author} \r\n * @Date: {createTime} \r\n * @Last Modified by: {lastModifiedBy} \r\n * @Last Modified time: {updateTime} \r\n */\r\n", // By default, update file username. "fileheader.LastModifiedBy": "mikey.zhaopeng",
而後進行更改:調試
// By default, create file username 此處更改成你的用戶名 "fileheader.Author": "Yanta", // By default, common template. Do not modify it!!!!! "fileheader.tpl": "#!/usr/bin/env python \r\n# -*- coding:utf-8 -*- \r\n'''\r\n * @Author: {author} \r\n * @Date: {createTime} \r\n * @Last Modified by: {lastModifiedBy} \r\n * @Last Modified time: {updateTime} \r\n * @Desc: \r\n'''\r\n", // By default, update file username. 此處更改成你的用戶名 "fileheader.LastModifiedBy": "Yanta", "workbench.iconTheme": "vscode-icons"
更改過上述配置以後須要重啓vscode,不然不會應用更改。
重啓後新創建文件,按下快捷鍵:Ctrl+Alt+i,就會在腳本開頭自動填入註釋內容。code
file-header目前沒法自動添加註釋部分,並且沒法想vim同樣能夠自動識別腳本類型,而後自動插入對應的文首註釋。
註釋只能針對全部的腳本文件一視同仁。utf-8
增長文件圖標插件,實際上就是爲了好看。
直接搜索:vscode-icons安裝便可。it