python tab补全

Posted nul1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python tab补全相关的知识,希望对你有一定的参考价值。

看视频发现讲课的老师python可以tab补全,网上找了一段代码
如下:

[root@node01 data]#vi tab.py

 1 #!/usr/bin/env python
 2 # python startup file 
 3 import sys
 4 import readline
 5 import rlcompleter
 6 import atexit
 7 import os
 8 # tab completion 
 9 readline.parse_and_bind(\'tab: complete\')
10 # history file 
11 histfile = os.path.join(os.environ[\'HOME\'], \'.pythonhistory\')
12 try:
13     readline.read_history_file(histfile)
14 except IOError:
15     pass
16 atexit.register(readline.write_history_file, histfile)
17 del os, histfile, readline, rlcompleter

拷贝到python命令路径

[root@node01 data]#cp tab.py /usr/lib64/python2.6

导入

[root@node01 data]# python
Python 2.6.6 (r266:84292, Aug 18 2016, 15:13:37) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import tab
>>> import sys
>>> sys.p
sys.path                 sys.platform             sys.ps2
sys.path_hooks           sys.prefix               sys.py3kwarning
sys.path_importer_cache  sys.ps1  

 

以上是关于python tab补全的主要内容,如果未能解决你的问题,请参考以下文章

python交互模式下命令tab补全

linux下安装python,如何启动django,TAB自动补全代码

python~实现tab补全

在vim编辑器python实现tab补全功能

Python终端下添加tab健补全功能

linux下Tab及shell vim补全python