wordpress 网站暂停,做社区生意的网站,网站开发前端和后端工作,越秀网站建设策划Jupyter Notebook是一个基于网页的交互式笔记本#xff0c;支持运行多种编程语言。 Jupyter Notebook 的本质式一个Web应用程序#xff0c;便于创建和共享文学化程序文档#xff0c;支持实现代码#xff0c;数学方程#xff0c;可视化和markdown。用途包括#xff1a;数据…Jupyter Notebook是一个基于网页的交互式笔记本支持运行多种编程语言。 Jupyter Notebook 的本质式一个Web应用程序便于创建和共享文学化程序文档支持实现代码数学方程可视化和markdown。用途包括数据清理和转换数值模拟统计建模机器学习等。
1、%timeit 检测任意python语句的执行时间
%timeit [x**3 for x in range(1000)]2、%matplotlib inline 画图显示在页面
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inlinedata np.arange(20)
plt.plot(data**2)3、%pwd 显示当前目录
%pwd4、%run python文件
%run test_run.py