Pregunta

How can I pass an input file to a Python script in Aptana python debugger? From console I do something like:

python test.py < input.txt

I tried editing the debug configuration in order to add the input file as program arguments, but it does not work.

enter image description here

¿Fue útil?

Solución

I'm not sure if Aptana can handle this. If not, just override sys.stdin in test.py:

import sys
sys.stdin = open('input.txt', 'r')
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top