ctrl+k、ctrl+o 打开资源管理器选择文件夹或文件
ctrl+shift+p 控制面板
ctrl+shift+k删除整行
Ctrl+P,快速打开文件
单行注释:[ctrl+k,ctrl+c] 或 ctrl+/
取消单行注释:按下ctrl不放,再按k + u
多行注释:[alt+shift+A]
多行注释:/**
shift+enter:在Python终端中运行选定内容或行
跳转到行:Ctrl+G,可以跳转到指定行。
显示隐藏侧边栏:ctrl + B
安装完成后碰到几个问题,还不知道怎么搞:
1、再vs code的终端bash里面列出当前目录的文件夹的时候显示中文文件为?
2、针对.py文件,选择再终端中运行文件的的时候,打印中文的时候会出现乱码。
错误原因主要是编码不一致,参考链接
[UnicodeEncodeError 'ascii' codec can't encode characters ](https://blog.csdn.net/th_num/article/details/80450607)
跟系统自带的终端的输出是不一样的
>>> print(sys.stdout.encoding)
UTF-8
import sys
#reload(sys)
#sys.getdefaultencoding()
print(sys.stdout.encoding)
(base) timekiller@debian:~$ /home/timekiller/anaconda3/bin/python /home/timekiller/vscode/test2.py
ANSI_X3.4-1968
3、如果是针对当前行的运行print("你好")的时候出现报错。
vs code 中文显示.png
https://yq.aliyun.com/articles/623166
Getting Started with Python in VS Code
https://code.visualstudio.com/docs/python/python-tutorial
参考链接:
https://blog.csdn.net/qq_22338889/article/details/78790964
VS Code 的常用快捷键和插件
Python3字符串默认编码unicode
网友评论