I tried to input arguments to a script through Run Python Script dialogue window, but failed. The code is is as below:
AA=input('input argument AA:')
print (AA)
bb=input('input argument bb:')
print (bb)
Reffer the attached picture.
Console message:
Traceback (most recent call last):
File "C:/Python33/try.py", line 4, in <module>
AA=input('input argument AA:')
RuntimeError: input(): lost sys.stdin
Anyone can help? Thanks in advance.