導航:首頁 > 電腦知識 > 電腦cmd如何清屏

電腦cmd如何清屏

發布時間:2023-02-09 05:01:37

A. 華為筆記本清屏鍵是哪個

華為筆記本清屏鍵是Fn。Ctrl+A?全選當前對話框里的內容?Ctrl+Z?清空輸入框里的文字。也可以Ctrl+A?全選當前對話框里的內容之後點擊delete。如果是哪種對話的一般都可以直接關閉你的對話框的形式來完成清屏,對方說話後在打開就可以了。cmd中命令清屏是cls,linux中命令是clear。

B. Python自帶IDLE Shell和命令行(cmd中) 清屏方法

一、針對命令行CMD中:調用DOS系統提供的cls命令

import os

os.system('cls')

二、針對IDLE Shell

1、在...\Python\Lib\idlelib文件夾下新建ClearWindow.py文件

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_window2)

        self.text.bind("<<undo>>", 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)

2、 在Python\Lib\idlelib目錄下編輯config-extensions.def(IDLE擴展配置文件)

在該文件最後增加如下內容:

[ClearWindow]

enable=1

enable_editor=0

enable_shell=1

[ClearWindow_cfgBindings]

clear-window=<Control-Key-w>    

--定義了清屏快捷鍵Ctrl + w,w必須是小寫

啟動Python IDLE,在Options菜單下會出現" Clear Shell Window Ctrl+W"

這時候就可以用快捷鍵Ctrl + w 清屏了

C. cmd清屏快捷鍵

Ctrl+A 全選當前對話框里的內容 Ctrl+Z 清空輸入框里的文字;也可以

Ctrl+A 全選當前對話框里的內容之後點擊delete;如果是哪種對話的一般都可以直接關閉你的對話框的形式來完成清屏,對方說話後在打開就可以了。

cmd中命令清屏是cls

linux中命令是clear

閱讀全文

與電腦cmd如何清屏相關的資料

熱點內容
網路共享中心沒有網卡 瀏覽:493
電腦無法檢測到網路代理 瀏覽:1350
筆記本電腦一天會用多少流量 瀏覽:477
蘋果電腦整機轉移新機 瀏覽:1349
突然無法連接工作網路 瀏覽:962
聯通網路怎麼設置才好 瀏覽:1192
小區網路電腦怎麼連接路由器 瀏覽:934
p1108列印機網路共享 瀏覽:1187
怎麼調節台式電腦護眼 瀏覽:604
深圳天虹蘋果電腦 瀏覽:841
網路總是異常斷開 瀏覽:584
中級配置台式電腦 瀏覽:895
中國網路安全的戰士 瀏覽:606
同志網站在哪裡 瀏覽:1380
版觀看完整完結免費手機在線 瀏覽:1432
怎樣切換默認數據網路設置 瀏覽:1080
肯德基無線網無法訪問網路 瀏覽:1255
光纖貓怎麼連接不上網路 瀏覽:1377
神武3手游網路連接 瀏覽:938
局網列印機網路共享 瀏覽:975