IDLE是Python软件包自带的一个集成开发环境,可以方便地创建、运行、调试Python程序。
进入你的python安装目录,比如我的python安装在d盘,你只要进到下面这个文件夹去,例如:D:\ProgramFiles\Python33\Lib\idlelib\idle.bat运行即可。
相关推荐:《python视频教程》
至于出现一个黑色的空白cmd命令提示符窗口的解决方法只要用记事本打开idle.bat文件,在文件的末尾加上exit即可,
如:
idle.bat原代码:
@echo off rem Start IDLE using the appropriate Python interpreter set CURRDIR=%~dp0 start "IDLE" "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9
更改后代码:
@echo off rem Start IDLE using the appropriate Python interpreter set CURRDIR=%~dp0 start "IDLE" "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9 exit
补充一点,可以将D:\Program Files\Python33\Lib\idlelib\加入系统变量,这样只要打开cmd输入idle回车就可以了。
以上是python中的idle在哪里的详细内容。更多信息请关注PHP中文网其他相关文章!