Prevent "runfile(...)" expression in Spyder console

3.5k Views Asked by At

I'm just getting started with Python and trying to get some easy code-examples to compile. I am using the 'Spyder' Editor and everytime I run code it shows 'runfile(...)' before the actual compiled code in the console.

Is there a way to prevent this behaviour?

2

There are 2 best solutions below

1
On

Try including this instead immediately prior to your code. The terminal will now return a clean code only response:

cls = lambda: print("\033[2J\033[;H", end='')
cls()
0
On

you are trying to run the code, instead go to settings, keyboard shortcuts, and look for "run selection" it will have a shortcut assigned to it

Now select all the code and use the shortcut

it will only give you in and out