Passing an Integer as Input to Exec Node to run Python Script

Hi,
I am having python script in my local PC, I need to run through integer in node-red, if I run the script I am getting an error as Command failed: C:\Users\gundre\Desktop\NewPythonFiles\python_test 1 one input.

My Script:
a=int(input())
for i in range (0,10,1):
z=a+i
print(z)

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.