Python基础 (tab自动补全)

Posted

tags:

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

Python 自动补全

1、添加python自动补全的脚本

vim ~/.pythonstartup     #添加如下
#!/usr/bin/python 
import sys
import readline
import rlcompleter
import atexit
import os
# tab completion 
readline.parse_and_bind(‘tab: complete‘)
# history file 
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

2、添加到~/.bashrc

echo ‘export PYTHONSTARTUP="/root/.pythonstartup"‘  >> ~/.bashrc
source ~/.bashrc                      

3、测试

[[email protected] ~]# python
Python 2.7.11 (default, Mar 29 2016, 23:35:44) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-16)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.t                            #tab可以补全
os.tcgetpgrp(  os.tcsetpgrp(  os.tempnam(    os.times(      os.tmpfile(    os.tmpnam(     os.ttyname(    

 

以上是关于Python基础 (tab自动补全)的主要内容,如果未能解决你的问题,请参考以下文章

python代码自动补全

设置python中TAB键自动补全方法

Python Tab自动补全

python tab 自动补全

python的tab自动补全

Python建立Tab自动补全的脚本