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