mengeksekusi skrip python secara interaktif

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.
Itchy Ibex