IDLE是Python軟體包自備的一個整合開發環境,可以方便地創建、運行、調試Python程式。
進入你的python安裝目錄,例如我的python安裝在d盤,你只要進到下面這個資料夾去,例如:D:\ProgramFiles \Python33\Lib\idlelib\idle.bat運作即可。
至於出現一個黑色的空白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中文網其他相關文章!