我可以执行ipython脚本吗?

时间:2012-08-02 17:29:59

标签: python ipython

有没有办法执行ipython脚本?我不是指python脚本,而是使用简化的语法,因为它将输入到ipython shell

1 个答案:

答案 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