How do I load a file into the python console?

前端 未结 8 2305
攒了一身酷
攒了一身酷 2020-12-12 09:28

I have some lines of python code that I\'m continuously copying/pasting into the python console. Is there a load command or something I can run? e.g. load

8条回答
  •  無奈伤痛
    2020-12-12 09:56

    From the man page:

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

    So this should do what you want:

    python -i file.py
    

提交回复
热议问题