I am using Python 2.7 with Spyder
I am importing from a file (xxx.py) the value of some variables using a command like this:
from xxx import v1,v2,v3,v4
I can use the variables but Spyder shows me all the output from xxx.py (a series of print commands are run in the xxx.py file) prior to the output of the current program. Is there something that I can do to display only the output from the current file, running the code form xxx.py in "background"?