I have a python script that I like to run with python -i script.py
, which runs the script and then enters interactive mode so that I can play around with the results.
Is it possible to have the script itself invoke this option, such that I can just run python script.py
and the script will enter interactive mode after running?
Of course, I can simply add the -i
, or if that is too much effort, I can write a shell script to invoke this.