天天看點

jupyter使用指南

LawsonAbs的認知與思考,還請各位讀者批判閱讀。

總結

  • 文章來源:csdn:LawsonAbs
  • 總結jupyter的使用技巧、囊括

    jupyter notebook

    中常犯的錯誤等
  • 持續更新~

一.技巧篇

1.安裝

jupyter

的主題

pip install --upgrade jupyterthemes

2.jupyter 修改主題設定

jt -t grade3 -f fira -fs 14 -cellw 90% -ofs 11 -dfs 11 -T -N

這行代碼得到的頁面效果是:

jupyter使用指南

PART 2.錯誤總結篇

1.jupyter的結果随着執行次數而改變

a = 1
           
a = a+1
           

繼續閱讀