Hi,
I am using run power shell script activity for run python code. When i use input method in python script i am getting error that - EOFError: EOF when reading a line.
Here is my code,
x = input("Enter the Number1 :")
y = input("Enter the Number2 :")
sum = int(x) + int(y)
print("The sum is: ", sum) Any Suggestions..?
Thanks in advance.