Make Python Console / Django Console interactive interpreter print out the value automatically, rather than having to call "print()" [example included]
Answered
for i in range(10):
i
I want to be able to do that here:
and it would print out the value of `i` automatically instead of forcing me to print it manually. See above how it did not print out the value of `i`? Well, here's what I want to happen instead.
This is the default behavior of Python IDLE. I like it. My question is, in:
Settings > Build, Execution, Deployment > Console > Python Console or Django Console
I see "Interpreter options". Is there an interpreter options command that would give me this immediate printing of variables in the interactive environment?
Please sign in to leave a comment.
I filed a bug to our issue tracker about that https://youtrack.jetbrains.com/issue/PY-58982/Python-Django-Console-doesnt-print-the-output-as-Python-REPL-does, please vote for it and feel free to comment.