最近在学习并熟悉vscode的操作使用方法,记录一下。
-
jupyter介绍:jupyter notebook(此前被称为 ipython notebook)是一个交互式笔记本,支持运行 40 多种编程语言,对于希望编写漂亮的交互式文档的人来说是一个强大工具。jupyter可以一段一段的运行python代码并且保存中间结果,用着十分方便。
(the jupyter extension supports other languages such as julia and r (as well as python) in vs code insiders with our new native notebooks experience!)
2.那么如何在vscode 里建立ipynb文件呢?
打开一个文件夹,将文件导进去->打开命令面板(窗口:ctrl shift p,ios:命令 shift p-)>输入:
jupyter: create new blank jupyter notebook
这样就可以做自己的笔记了,不容易丢,也很整齐好看。
3.若要查看所有可用的 jupyter 笔记本命令,请打开命令调色板输入jupyter
4.开始记录并保存。
设置区域
表单记录
全部运行
jupyter对于写一些小程序及连续练习有更高的效率和更多的可视感,是一个新手学习python的不错选择。
(注:更详细的在第三篇图文中,看完就都明白啦!)