发布时间:2019-08-13 07:35:02编辑:auto阅读(2002)
vi python_tab.py
#!/usr/bin/env python
import sys
import readline
import rlcompleter
import atexit
import os
#tab completion
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
将脚本复制到此目录下/usr/lib64/python2.6/
cp python_tab.py /usr/lib64/python2.6/
运行python,导入刚刚创建的脚本
python
>>> import python_tab
上一篇: python list tuple d
下一篇: Python排序
51592
51180
41683
38445
32931
29912
28622
23586
23516
21865
2021°
2733°
2282°
2210°
2682°
2237°
2984°
4919°
4777°
3393°