在Python IDLE中实现清屏(在python中函数和类都属于可调用对象)

网友投稿 266 2022-08-27


在Python IDLE中实现清屏(在python中函数和类都属于可调用对象)

屏幕东西太多,需要清屏,在windows的窗口清屏命令是cls,在Python IDLE中的快捷键是Ctrl+L

不过这个快捷键默认是没有的,需要进行一些操作

一、将下面的代码复制保存到新建的clearwindow.py中

"""Clear Window ExtensionVersion: 0.2Author: Roger D. Serwy roger.serwy@gmail.comDate: 2009-06-14It provides "Clear Shell Window" under "Options"with ability to undo.Add these lines to config-extensions.def[ClearWindow]enable=1enable_editor=0enable_shell=1[ClearWindow_cfgBindings]clear-window="""class ClearWindow: menudefs = [ ('options', [None, ('Clear Shell Window', '<>'), ]),] def __init__(self, editwin): self.editwin = editwin self.text = self.editwin.text self.text.bind("<>", self.clear_window2) self.text.bind("<>", self.undo_event) # add="+" doesn't work def undo_event(self, event): text = self.text text.mark_set("iomark2", "iomark") text.mark_set("insert2", "insert") self.editwin.undo.undo_event(event) # fix iomark and insert text.mark_set("iomark", "iomark2") text.mark_set("insert", "insert2") text.mark_unset("iomark2") text.mark_unset("insert2") def clear_window2(self, event): # Alternative method # work around the ModifiedUndoDelegator text = self.text text.undo_block_start() 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") text.undo_block_stop() if self.text.compare('insert', '<', 'iomark'): self.text.mark_set('insert', 'end-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', 'end-1c') self.editwin.set_line_and_column() # restore undo delegator self.editwin.per.insertfilter(undo)

二、将这个文件放在Python X\Lib\idlelib目录下(X为你的python版本)

三、然后在这个目录下找到config-extensions.def这个文件(idle扩展的配置文件),以记事本的方式打开它

四、打开config-extensions.def 后在句末加上如下代码

[ClearWindow]enable=1enable_editor=0enable_shell=1[ClearWindow_cfgBindings]clear-window=

五、然后保存退出就可以了。

打开python的idle,看看options是不是多了一个选项clear shell window ctrl+L 这时ctrl+l就可以实现清屏了


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Python3学习笔记(python3教程菜鸟教程)
下一篇:Python从门到精通(六):线程-03-线程间通信(Python线程间通信)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~