Python IDLE中實現清屏

2022-03-13 07:09:07 字數 376 閱讀 7610

將這個檔案放在python x\lib\idlelib目錄下(x為你的python版本),然後在這個目錄下找到config-extensions.def這個檔案(idle擴充套件的配置檔案),以記事本的方式開啟它

開啟config-extensions.def  後在句末加上這樣幾句:

[clearwindow]

enable=1

enable_editor=0

enable_shell=1

[clearwindow_cfgbindings]

clear-window=

然後儲存退出就可以了。

開啟python的idle,看看options是不是多了乙個選項clear shell window  ctrl+l

在Python IDLE中實現清屏

螢幕東西太多,需要清屏,在windows的視窗清屏命令是cls,在python idle中的快捷鍵是ctrl l clear window extension version 0.2 author roger d.serwy roger.serwy gmail.com date 2009 06 14...

Mac中實現python IDLE清屏

clear window extension version 0.2 author roger d.serwy roger.serwy gmail.com date 2009 06 14 it provides clear shell window under options with abilit...

Python IDLE 怎麼清屏?

python idle 怎麼清屏?方法很簡單,為idle增加乙個清屏的擴充套件 clearwindow 就可以了 開啟config extensions.def 後在句末加上這樣幾句 clearwindow enable 1 enable editor 0 enable shell 1 clearw...