Jupyter notebook 上这个带百分比的语言是什么语言呢?
%run abc.py
就是在Jupyter notebook 里这个%run 叫什么语言?
我搜点资料,不知道什么名没法搜的。
要是直接有资料更好了,但是大家都比较忙哈,也不奢求了。
回答:
jupyter中以%开头的命令叫做magic command, 也叫魔法命令,由IPython内核提供。
有关命令的详细介绍, 可以参考官方文档
里面写的非常详细,应该对你了解或学习有所帮助。
回答:
%run file
用于执行文件 file
。
在 notebook 中寻找帮助文档 ? %run
Docstring:Run the named file inside IPython as a program.
Usage::
%run [-n -i -e -G]
[( -t [-N<N>] | -d [-b<N>] | -p [profile options] )]
( -m mod | file ) [args]
Parameters after the filename are passed as command-line arguments to
the program (put in sys.argv). Then, control returns to IPython's
prompt.
...
以上是 Jupyter notebook 上这个带百分比的语言是什么语言呢? 的全部内容, 来源链接: utcz.com/a/157856.html