首页 > 代码库 > python tab键补全功能

python tab键补全功能

1.tab功能脚本

[root@localhost python]# cat tab.py

#!/usr/bin/python 

import sys 

import readline 

import rlcompleter 

import os 

# tab completion 

readline.parse_and_bind(‘tab: complete‘) 

# history file 

histfile = os.path.join(os.environ[‘HOME‘], ‘.pythonhistory‘) 

2.导入

在脚本当前目录下,执行python,然后import

import tab

本文出自 “Linux” 博客,请务必保留此出处http://520and519.blog.51cto.com/2254416/1581838

python tab键补全功能