在jupyter笔记本中运行python脚本,并传递参数

时间:2018-07-27 05:02:16

标签: python jupyter-notebook jupyter

我有一个从Jupyter Notebook运行的简单python脚本。但是,我传递给它的参数似乎被忽略了,这导致了异常:

two_digits.py

import sys
input = sys.stdin.read()
tokens = input.split()
a = int(tokens[0])
b = int(tokens[1])
print(a + b)

%run two_digits 3 5

ndexError                                Traceback (most recent call last)
D:\Mint_ns\two_digits.py in <module>()
      5 tokens = input.split()
      6 
----> 7 a = int(tokens[0])
      8 
      9 b = int(tokens[1])

IndexError: list index out of range

您的建议将不胜感激。

2 个答案:

答案 0 :(得分:4)

您需要使用sys.argv而不是sys.stdin.read()

two_digits.py

import sys
args = sys.argv  # a list of the arguments provided (str)
print("running two_digits.py", args)
a, b = int(args[1]), int(args[2])
print(a, b, a + b)

命令行/ jupyter魔术行:

%run two_digits 3 5

或者,输出略有不同:
注意:这使用!前缀来指示jupyter的命令行

!ipython two_digits.py 2 3

输出:(使用魔术行%run)

running two_digits.py ['two_digits.py', '2', '3']
2 3 5

答案 1 :(得分:1)

%%file calc.py

from sys import argv

script, a, b, sign = argv

if sign == '+': 
    print(int(a) + int(b))
elif sign == '-':
    print(int(a) - int(b))
else:
    print('I can only add and subtract')

我们有几种选择:

%%!
python calc.py 7 3 +

%run calc.py 7 3 +

!python calc.py 7 3 +

或包含输出中的路径

!ipython calc.py 7 3 +

要使用第一种方式访问​​输出%%!。输出是一个列表(IPython.utils.text.SList)

[In 1]
%%!
python calc.py 7 3 +

[Out 1]
['10']

现在您可以使用下划线'_'

[In 2]
int(_[0])/2  # 10 / 2

[Out 2]
5.0