标签:bsp 环境 pre dde oca 运行 运行时 nbsp 括号
一、fidder配置
pip3 install jupyter
jupyter notebook
访问浏览器,地址栏中默认地将会显示:http://localhost:8888
。其中,“localhost”指的是本机,“8888”则是端口号。
jupyter notebook --port <port_number> 其中,“<port_number>”是自定义端口号,直接以数字的形式写在命令当中,数字两边不加尖括号“<>”。如:jupyter notebook --port 9999,即在端口号为“9999”的服务器启动Jupyter Noteboo
向上插入一个cell:a 向下插入一个cell:b 删除cell:x 将code切换成markdown:m 将markdown切换成code:y 运行cell:shift+enter 查看帮助文档:shift+tab 自动提示:tab 3. 魔法指令 运行外部python源文件:%run xxx.py 计算statement的运行时间:%time statement 计算statement的平均运行时间:%timeit statement 测试多行代码的平均运行时间: %%timeit statement1 statement2 statement3
标签:bsp 环境 pre dde oca 运行 运行时 nbsp 括号
原文地址:https://www.cnblogs.com/TodayWind/p/13767742.html