IT运维笔记


python IDLE的打开方式

IDLE是python软件包自带的一个集成开发环境,初学者可以利用它方便的创建、运行、测试和调试python程序。 在python\Lib\idlelib目录下找到idle.bat运行即可 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