如何使用 CMD 提示符在 IDLE 中 运行 一个 python 脚本
How to run a python script in IDLE using CMD prompt
我想知道是否有办法在 IDLE 运行 模式下打开 python 脚本,(相当于用 idle.exe {path} 打开它并按 F5)或对其进行设置,以便如果使用 IDLE 打开 .py 文件,它会自动 运行s 它。
#Opens without IDLE GUI
python {path}
#Opens in IDLE, but in editor mode
@ECHO OFF
idle.exe {path_to_idle}
# Running script.py in idle
idle.exe -r script.py
您可以考虑使用:
# Inspect interactively after running script (see "python --help" from cmd)
python -i script.py
我想知道是否有办法在 IDLE 运行 模式下打开 python 脚本,(相当于用 idle.exe {path} 打开它并按 F5)或对其进行设置,以便如果使用 IDLE 打开 .py 文件,它会自动 运行s 它。
#Opens without IDLE GUI
python {path}
#Opens in IDLE, but in editor mode
@ECHO OFF
idle.exe {path_to_idle}
# Running script.py in idle
idle.exe -r script.py
您可以考虑使用:
# Inspect interactively after running script (see "python --help" from cmd)
python -i script.py