pythonidle清屏
A. 【整理】python的IDLE中如何實現清屏,即IDLE的清屏求解
唯一一個變通的方法是,需要多操作幾步:
1.File-New Window,以打開一個新的窗口Untitled
2.關閉掉原先的Python Shell
3.在新Untitled窗口中,點擊 Run-Python Shell,就可以打開一個,全新的Python shell了,變相的實現了清屏的目的
4.再關閉之前的Untitled的窗口
此法很明顯,很蛋疼。。。
或者說,未必比你關閉Python Shell,重新打開,來的更快。
但是還是算一個方法的。。。。
B. Python shell怎麼快速清空當前頁面
如果是python shell那麼
import os
os.system("cls")
如果是idel,就比較麻煩
下載clearwindow.py(點擊可直接下載,不能下載的可以右鍵保存,格式為py結尾),將這個文件放在Python X\Lib\idlelib目錄下(X為你的python版本),然後在這個目錄下找到config-extensions.def這個文件(idle擴展的配置文件),以記事本的方式打開它(為防止出錯,你可以在打開它之前先一個備份)。額,打開後它看起來可能會密密麻麻的,如果可以,建議你最好用像sublime text或vim這樣支持高亮格式化的編輯器來打開它。
打開config-extensions.def 後在句末加上這樣幾句:
[ClearWindow]
enable=1
enable_editor=0
enable_shell=1
[ClearWindow_cfgBindings]
clear-window=<Control-Key-l>
然後保存退出就可以了。
打開python的idle,看看options是不是多了一個選項clear shell window ctrl+L
如果是這樣的話,那就證明你安裝成功了,以後要清屏直接ctrl+L就可以了
C. python idle 怎麼清屏 快捷鍵
Python Shell中清屏一般有兩種方法。 1、使用os模塊 import os#載入os模塊os.system("cls") # windows上執行cls命令os.system("clear") # linux上執行clear命令 上圖是linux上的示例,按下回車鍵後,馬上清除所有顯示內容。 2、使用subprocess模...
D. python idle怎麼清屏
打開config-extensions.def 後在句末加上這樣幾句:
[ClearWindow]
enable=1
enable_editor=0
enable_shell=1
[ClearWindow_cfgBindings]
clear-window=<Control-Key-l>
然後保存退出就可以了。
打開python的idle,看看options是不是多了一個選項clear shell window ctrl+L
如果是這樣的話,那就證明你安裝成功了,以後要清屏直接ctrl+L就可以了
E. python idle 怎麼清屏
在cmd ide中輸入import os;os.system('cls'),即可清屏(只會在頁面中顯示一個0)
F. ipynb 下python如何清屏
importos
os.system("cls")#windows
os.system("clear")#linux
G. 如何為Python的idle增加清屏功不能成功如何解決
#你好,除了修改config-extensions.def,你還需要將下面的代碼保存成clearwindow.py,然後將clearwindow.py放到config-extensions.def的目錄下面去。
classClearWindow:
menudefs=[
('options',[None,
('ClearShellWindow','<<clear-window>>'),
]),]
def__init__(self,editwin):
self.editwin=editwin
self.text=self.editwin.text
self.text.bind("<<clear-window>>",self.clear_window2)
self.text.bind("<<undo>>",self.undo_event)#add="+"doesn'twork
defundo_event(self,event):
text=self.text
text.mark_set("iomark2","iomark")
text.mark_set("insert2","insert")
self.editwin.undo.undo_event(event)
#fixiomarkandinsert
text.mark_set("iomark","iomark2")
text.mark_set("insert","insert2")
text.mark_unset("iomark2")
text.mark_unset("insert2")
defclear_window2(self,event):#Alternativemethod
#
text=self.text
text.undo_block_start()
text.mark_set("iomark2","iomark")
text.mark_set("iomark",1.0)
text.delete(1.0,"iomark2linestart")
text.mark_set("iomark","iomark2")
text.mark_unset("iomark2")
text.undo_block_stop()
ifself.text.compare('insert','<','iomark'):
self.text.mark_set('insert','end-1c')
self.editwin.set_line_and_column()
defclear_window(self,event):
#removeundodelegator
undo=self.editwin.undo
self.editwin.per.removefilter(undo)
#clearthewindow,butpreservecurrentcommand
self.text.delete(1.0,"iomarklinestart")
ifself.text.compare('insert','<','iomark'):
self.text.mark_set('insert','end-1c')
self.editwin.set_line_and_column()
#restoreundodelegator
self.editwin.per.insertfilter(undo)
H. Python Shell 怎樣清屏
使用os模塊進行載入進行清屏。
I. 在python交互命令行中如何清屏
1、在Windows命令行窗口,顯示內容很多了,需要清屏,輸入cls後,回車。