怎么在jupyter上运行程序?

图片[1]-怎么在jupyter上运行程序?-uusu优素-乐高,模型,3d打印,编程

在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
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容