您好,登錄后才能下訂單哦!
在shell(bash)下有2個很基本的功能,那就是tab補全,和clear清屏,對于我這種時不時不自覺的就手殘要clear清屏一下的人來說,python控制臺不能清屏很不爽,經過google的幫忙,找到了解決辦法。
執行“man python”可以看到這樣一個環境變量:
PYTHONSTARTUP If this is the name of a readable file, the Python commands in that file are executed before the first prompt is displayed in interactive mode. The file is executed in the same name space where interactive commands are executed so that objects defined or imported in it can be used without qualification in the interactive session. You can also change the prompts sys.ps1 and sys.ps2 in this file.
在啟動python解釋器后,會執行環境變量 PYTHONSTARTUP 指向的文件(如果是一個可執行的python腳本的話),就像啟動shell會執行~/.bashrc一樣。可以寫一個隱藏的腳本 .pythonstartup.py 放在自己的用戶目錄下,并配置PYTHONSTARTUP指向它:
~/.bashrc export PYTHONSTARTUP=~/.pythonstartup.py
~/.pythonstartup.py import readline, rlcompleter readline.parse_and_bind("tab: complete") import os, sys def cc() : os.system('clear')
這樣配置之后,當進入python交互控制臺的時候,就可以使用tab補全,并輸入”cc()”清屏,在這里順便import了os和sys,需要使用的時候就不用再import了.當然,還可以配置其他需要預先執行的命令或者語句。
以上這篇python控制臺實現tab補全和清屏的例子就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。