Answers for "executing a python script interactively"

0

executing a python script interactively

python -i <script.py> <args>
# This will first execute the script.py file, then run the interactive
# python interpreter (or python REPL).
# This would enable the user to reuse the functions and objects defined
# in script.py.
Posted by: Guest on September-23-2021

Code answers related to "executing a python script interactively"

Python Answers by Framework

Browse Popular Code Answers by Language