在jupyter上运行程序的方法介绍:(推荐:jupyter使用教程)
先在目录下写.py的文件
deff(x,y,z): return(x+y)/z a=5 b=6 c=7.5 result=f(a,b,c)
jupyter notebook 输入%load ipython_script_test.py:将脚本导入一个代码单元
#%loadipython_script_test.py #!/usr/bin/envpython #In[8]: deff(x,y,z): return(x+y)/z a=5 b=6 c=7.5 result=f(a,b,c)
jupyter notebook 输入%run ipython_script_test.py:运行Python程序文件
%runipython_script_test.py
输入c
c
7.5原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容