怎么样在jupyter中导入源码?[jupyter使用教程]

python

jupyter中导入源码的方法介绍:(推荐:jupyter使用教程)

先在目录下写.py的文件

def f(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:将脚本导入一个代码单元

# %load ipython_script_test.py

#!/usr/bin/env python

# In[8]:

def f(x, y, z):

    return (x + y) / z

a = 5

b = 6 

c = 7.5

result = f(a, b, c)

IPython有一些特殊的命令。能够方便轻松地控制IPython系统。

魔术命令以百分号%为前缀;可看作运行于IPython系统中的命令行程序,它们大都还有一些参数选项。在命令后面加问号(?)可以查看。默认可以不带百分号使用的,只要没有定义与其同名的变量即可。可以通过%automagic命令打开或者关闭此功能。

更多python知识请关注python教程。

以上是 怎么样在jupyter中导入源码?[jupyter使用教程] 的全部内容, 来源链接: utcz.com/z/526669.html

回到顶部