有没有办法执行ipython脚本?我不是指python脚本,而是使用简化的语法,因为它将输入到ipython shell
中答案 0 :(得分:12)
当然,只需使用Python运行它们就像Python一样用于普通的Python脚本:
$> echo '%time print "hello, world"' > script.ipy
$> ipython script.ipy
hello, world
CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
Wall time: 0.00 s