Jupyter notebook 介紹

1.程序是怎麼執行的

步驟:1 明確操作 2 寫出對應代碼 3 翻譯代碼 4 執行代碼 5 調試代碼

2.IDE 和IDLE

IDE 一般包含三個主要組件:源代碼編輯器、編譯器、解釋器、調試器

IDLE 是IDE的一種,是python自帶的一個IDE

常用的IDE 有 Jupyter、Pycharm、Sublime Text


Python 數據分析 - Jupyter notebook 介紹

運行 Run = Ctrl+Enter

Python 數據分析 - Jupyter notebook 介紹

當[ ] 為空時 表示當前cell 未執行

為[2] 內數字表示該Jupyter_Notebook 運行的2次

為[*]表示當前cell 為正在運行狀態


3.重新運行所有cell


Python 數據分析 - Jupyter notebook 介紹

4.重命名notebook 文件名


Python 數據分析 - Jupyter notebook 介紹

方法1


Python 數據分析 - Jupyter notebook 介紹

方法2

5.保存和另存為文件

Python 數據分析 - Jupyter notebook 介紹

6.導入本地Jupyter_notebook 文件

Python 數據分析 - Jupyter notebook 介紹

7.為文件進行分類

Python 數據分析 - Jupyter notebook 介紹

8.為Jupyter_notebook 添加拓展功能

  • 目錄
  • 代碼自動補全
  • 代碼運行時間

方法:

打開 Anaconda Prompt 將 pip install jupyter_contrib_nbextensions 複製進去 回車即可,安裝好後,需要將此插件和我們的notebook 進行配置 將Jupyter contrib nbextension install --user 回車後,重啟Jupyter notebook 軟件後即可看到

Python 數據分析 - Jupyter notebook 介紹

新增Nbextensions 選項,在裡面找需要的拓展功能

Python 數據分析 - Jupyter notebook 介紹

9.Markdown 功能

可以製作標題;

Python 數據分析 - Jupyter notebook 介紹

  1. 常用的快捷鍵功能
Python 數據分析 - Jupyter notebook 介紹

常用的快捷鍵

  • 運行代碼:Ctrl + Enter
  • 合併cell:按住Shift,用鼠標選擇cell,然後再按M
  • 批量上註釋:Ctrl + /
  • 替換查找:ESC + F
Python 數據分析 - Jupyter notebook 介紹

合併cell:按住Shift,用鼠標選擇cell,然後再按M

Python 數據分析 - Jupyter notebook 介紹

批量上註釋:Ctrl + /,在按Ctrl+/ 可都取消註釋

Python 數據分析 - Jupyter notebook 介紹

替換查找:ESC + F


分享到:


相關文章: