手把手教你怎么让Python IDLE清屏 idle清屏设置

相信有良多在Windows上利用Python的小伙伴城市想过如许一个问题——Python怎么样才能在IDLE清屏?IDLE是没有如许的功能的 。
其实 , 我们可以扩展IDLE , 使得我们在开辟和测试的时辰加倍便当 。
今天小编就教大师怎么扩展IDLE , 使其撑持清屏功能 。

手把手教你怎么让Python IDLE清屏 idle清屏设置

文章插图

需要这些哦
Python for Windows
方式/
1起头之前 , 我们必需要知道:
IDLE默认没有清屏功能 , 所以我们想要使其可以实现清屏 , 我们就必需要扩展IDLE 。
我们需要下载一个叫ClearWindow.py的扩展文件
如图

手把手教你怎么让Python IDLE清屏 idle清屏设置

文章插图

2其代码如下:
class ClearWindow:
    menudefs = [
        ('options', [None,
               ('Clear Shell Window', '<<clear-window>>'),
       ]),]
 
    def __init__(self, editwin):
        self.editwin = editwin
        self.text = self.editwin.text
        self.text.bind("<<clear-window>>", self.clear_window)
    def clear_window2(self, event): # Alternative method
        # work around the ModifiedUndoDelegator
        text = self.text
        text.mark_set("iomark2", "iomark")
        text.mark_set("iomark", 1.0)
        text.delete(1.0, "iomark2 linestart")
        text.mark_set("iomark", "iomark2")
        text.mark_unset("iomark2")
        if self.text.compare('insert', '<', 'iomark'):
            self.text.mark_set('insert', '-1c')
        self.editwin.set_line_and_column()
    def clear_window(self, event):
        # remove undo delegator
        undo = self.editwin.undo
        self.editwin.per.removefilter(undo)
        # clear the window, but preserve current command
        self.text.delete(1.0, "iomark linestart")
        if self.text.compare('insert', '<', 'iomark'):
            self.text.mark_set('insert', '-1c')
        self.editwin.set_line_and_column()
        # restore undo delegator
        self.editwin.per.insertfilter(undo)
小伙伴可以复制以上代码保留当作一个ClearWindow.py文件
同样 , 我们也可以到bugs.python.org/file14116/ClearWindow.py去复制保留 。

手把手教你怎么让Python IDLE清屏 idle清屏设置

文章插图

3我们打开Python的安装目次 , 找到Lib目次下的idlelib目次
然后把上面保留的ClearWindow.py拷贝到idlelib目次下 。
找到config-extensions.def设置装备摆设文件并打开它 。

推荐阅读