O que você está procurando é a opção -i
. De acordo com os manpages:
-i When a script is passed as first argument or the -c option is
used, enter interactive mode after executing the script or the
command. It does not read the $PYTHONSTARTUP file. This can be
useful to inspect global variables or a stack trace when a
script raises an exception.
Portanto, se o nome do seu script for name.py
, o que você precisa fazer é executar:
python3 -i name.py