新建一个tab.py脚本

#!/usr/bin/python

import sys
import readline
import rlcompleter
import atexit
import os
readline.parse_and_bind('tab:complete')
histfile=os.path.join(os.environ['HOME'],'.pythonhistory')
try:
    readline.read_history_file(histfile)
except IOError:
    pass
atexit.register(readline.write_history_file,histfile)
del os,histfile,readline,rlcompleter

 

进入python,然后执行import tab

这样就成功添加tab键提示了。

相关文章:

  • 2022-02-08
  • 2021-09-02
  • 2021-11-09
  • 2021-10-14
  • 2022-12-23
  • 2021-06-20
  • 2021-08-11
猜你喜欢
  • 2021-05-16
  • 2021-11-06
  • 2022-12-23
  • 2022-02-28
  • 2021-12-20
  • 2021-12-12
  • 2022-12-23
相关资源
相似解决方案