默认情况下在新 "windows terminal" 上制作 python 文件 运行 (Windows)
Make a python file run on the new "windows terminal" by default (Windows)
我想让我的 python 文件在“Windows 终端”程序而不是 python 应用程序上打开默认打开。有办法吗?
使用windows启动命令即:
c:>开始python
使用OS
import os
os.system("start cmd.exe /k python yourfile.py")
我想让我的 python 文件在“Windows 终端”程序而不是 python 应用程序上打开默认打开。有办法吗?
使用windows启动命令即:
c:>开始python
使用OS
import os
os.system("start cmd.exe /k python yourfile.py")