天天看点

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
           

继续阅读